mirror of
https://github.com/pnx/dotfiles
synced 2026-06-17 19:40:02 +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%",
|
position = "50%",
|
||||||
relative = "editor",
|
relative = "editor",
|
||||||
},
|
},
|
||||||
|
mappings = {
|
||||||
|
["<space>"] = "noop",
|
||||||
|
}
|
||||||
},
|
},
|
||||||
filesystem = {
|
filesystem = {
|
||||||
follow_current_file = {
|
follow_current_file = {
|
||||||
|
|
@ -84,7 +87,7 @@ return {
|
||||||
use_libuv_file_watcher = true,
|
use_libuv_file_watcher = true,
|
||||||
window = {
|
window = {
|
||||||
mappings = {
|
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",
|
["~"] = "toggle_hidden",
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
@ -92,7 +95,7 @@ return {
|
||||||
buffers = {
|
buffers = {
|
||||||
window = {
|
window = {
|
||||||
mappings = {
|
mappings = {
|
||||||
["."] = "",
|
["."] = "noop",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue