-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathfkvim.json
More file actions
90 lines (89 loc) · 2.2 KB
/
Copy pathfkvim.json
File metadata and controls
90 lines (89 loc) · 2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "FKvim",
"version": "1.2.2",
"codename": "Pre-Release",
"description": "A turbocharged NeoVim configuration crafted for modern developers with built-in support for file exploration, Git integration, and a minimal dashboard UI.",
"author": {
"name": "Mayank Kumar Jha",
"github": "https://github.com/flashcodes-themayankjha",
"email": "the.mayank.k.jha@gmail.com"
},
"features": {
"dashboard": {
"enabled": true,
"autoload_on_start": true,
"quote_rotation": true
},
"file_explorer": {
"plugin": "neo-tree.nvim",
"features": [
"File/Folder Creation",
"Rename",
"Delete",
"Live Search (Telescope)",
"Git Integration"
],
"shortcuts": {
"toggle": "<leader>e",
"find_current": "<leader>f",
"add": ["a", "+"],
"rename": "r",
"delete": "d",
"live_search": "/"
}
},
"themes": {
"colorscheme": "catppuccin",
"flavour": "mocha",
"transparent_background": true
},
"keybindings": {
"leader_key": " ",
"clipboard": {
"copy": "<leader>y",
"paste": "<leader>p",
"select_all": "<leader>a"
},
"navigation": {
"neotree_to_editor": "Cmd+Right",
"editor_to_neotree": "Cmd+Left"
},
"tabs": {
"next": "<leader>bn",
"prev": "<leader>bp"
},
"terminal": {
"toggle": "<Space>tt",
"horizontal": "<Space>th",
"vertical": "<Space>tv",
"float": "<Space>tf"
}
}
},
"dependencies": [
"neo-tree.nvim",
"catppuccin",
"nvim-lualine",
"nvim-transparent",
"telescope.nvim",
"dashboard-nvim",
"toggleterm.nvim",
"bufferline.nvim",
"indent-blankline.nvim",
"mini.indentscope"
],
"next_release": {
"version": "1.2.0",
"planned_features": [
"Integrated Terminal View",
"Enhanced Telescope Features",
"Treesitter Syntax Highlighting",
"Bufferline for Tabs"
]
},
"project": {
"repository": "https://github.com/yourusername/FKvim",
"license": "MIT",
"tags": ["neovim", "nvim", "vim", "file-explorer", "telescope", "ui", "git"]
}
}