1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 03:14:55 +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%",
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",
}
}
},