mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 11:24:55 +02:00
nvim/lua/user/plugins/ui/neotree.lua: fix leader mappings
This commit is contained in:
parent
ef640d0f27
commit
cdfafa96d6
1 changed files with 5 additions and 2 deletions
|
|
@ -76,6 +76,9 @@ return {
|
|||
position = "50%",
|
||||
relative = "editor",
|
||||
},
|
||||
mappings = {
|
||||
["<space>"] = "noop",
|
||||
}
|
||||
},
|
||||
filesystem = {
|
||||
follow_current_file = {
|
||||
|
|
@ -84,7 +87,7 @@ return {
|
|||
use_libuv_file_watcher = true,
|
||||
window = {
|
||||
mappings = {
|
||||
["."] = "", -- unbind set_root. I never use it but always hit the key :P
|
||||
["."] = "noop", -- unbind set_root. I never use it but always hit the key :P
|
||||
["~"] = "toggle_hidden",
|
||||
}
|
||||
},
|
||||
|
|
@ -92,7 +95,7 @@ return {
|
|||
buffers = {
|
||||
window = {
|
||||
mappings = {
|
||||
["."] = "",
|
||||
["."] = "noop",
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue