1
0
Fork 0
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:
Henrik Hautakoski 2024-12-04 16:04:49 +01:00
parent ef640d0f27
commit cdfafa96d6

View file

@ -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",
} }
} }
}, },