updates for neo-tree and naming files

This commit is contained in:
2026-02-17 11:17:25 -06:00
parent 991df01590
commit bc11e9e186
3 changed files with 14 additions and 0 deletions

View File

@@ -31,6 +31,10 @@ return {
mappings = { mappings = {
["\\"] = "close_window", ["\\"] = "close_window",
["/"] = "fuzzy_finder", ["/"] = "fuzzy_finder",
["P"] = function(state)
local node = state.tree:get_node()
require("neo-tree.ui.renderer").focus_node(state, node:get_parent_id())
end,
}, },
}, },
}, },

View File

@@ -0,0 +1,10 @@
return {
"folke/snacks.nvim",
priority = 1000,
lazy = false,
opts = {
input = {
enabled = true,
},
},
}