feat: update neotree for moving files

This commit is contained in:
Devin Lumley 2024-01-10 15:56:52 -08:00
parent 9ade6862af
commit e0c7a3e034
2 changed files with 12 additions and 0 deletions

View file

@ -12,6 +12,7 @@ return {
local nt = require("neo-tree")
nt.setup({
enable_normal_mode_for_inputs = true,
filesystem = {
filtered_items = {
show_hidden_count = false,
@ -26,6 +27,16 @@ return {
".DS_Store"
}
},
},
window = {
mappings = {
["m"] = {
"move",
config = {
show_path = "relative"
}
},
}
}
})
end