We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab65e77 commit d219292Copy full SHA for d219292
README.md
@@ -47,6 +47,12 @@ use {
47
"MunifTanjim/nui.nvim"
48
},
49
config = function ()
50
+ -- See ":help neo-tree-highlights" for a list of available highlight groups
51
+ vim.cmd([[
52
+ hi link NeoTreeDirectoryName Directory
53
+ hi link NeoTreeDirectoryIcon NeoTreeDirectoryName
54
+ ]])
55
+
56
require("neo-tree").setup({
57
popup_border_style = "rounded",
58
enable_git_status = true,
@@ -84,7 +90,6 @@ use {
84
90
["c"] = "copy_to_clipboard",
85
91
["x"] = "cut_to_clipboard",
86
92
["p"] = "paste_from_clipboard",
87
- ["bd"] = "buffer_delete",
88
93
}
89
94
95
@@ -106,6 +111,7 @@ use {
106
111
107
112
108
113
114
+ ["bd"] = "buffer_delete",
109
115
110
116
117
0 commit comments