Updated lazyvim & added system open to neotree

This commit is contained in:
Michel 2025-01-03 19:50:04 +01:00
parent af6424e7f9
commit 16fcac8f72
4 changed files with 52 additions and 34 deletions

View file

@ -4,5 +4,16 @@ return {
window = {
width = 40,
},
filesystem = {
window = {
mappings = {
["<C-l>"] = function(state)
local node = state.tree:get_node()
os.execute(string.format('xdg-open "%s" &> /dev/null &', node.path))
end,
},
},
},
},
}