improve neotree

This commit is contained in:
Joshua McCabe 2024-02-05 19:28:54 +01:00
parent 1f2e5c54e9
commit 69d5a976f8
2 changed files with 29 additions and 5 deletions

View file

@ -10,6 +10,18 @@ return {
"MunifTanjim/nui.nvim",
},
config = function ()
require('neo-tree').setup {}
require('neo-tree').setup {
default_component_configs = {
icon = {
folder_closed = "",
folder_open = "",
folder_empty = "󰜌",
-- The next two settings are only a fallback, if you use nvim-web-devicons and configure default icons there
-- then these will never be used.
default = "*",
highlight = "NeoTreeFileIcon"
},
}
}
end,
}