added shortcut neotree

main
Mathias Rothenhaeusler 2024-08-06 16:28:13 +02:00
parent 4007b903ed
commit 3ee3256320
1 changed files with 9 additions and 1 deletions

View File

@ -10,6 +10,14 @@ return {
'MunifTanjim/nui.nvim', 'MunifTanjim/nui.nvim',
}, },
config = function() config = function()
require('neo-tree').setup {} require('neo-tree').setup({
filesystem = {
window = {
mappings = {
["l"] = "open", -- Map 'l' to open directories
},
},
},
})
end, end,
} }