kickstart.nvim/lua/custom/plugins/filetree.lua

15 lines
338 B
Lua
Raw Normal View History

2024-01-23 01:17:49 -08:00
vim.cmd [[ let g:neo_tree_remove_legacy_commands = 1 ]]
2024-01-19 23:21:52 -08:00
return {
2024-01-23 01:17:49 -08:00
'nvim-neo-tree/neo-tree.nvim',
version = '*',
2024-01-19 23:21:52 -08:00
dependencies = {
2024-01-23 01:17:49 -08:00
'nvim-lua/plenary.nvim',
'nvim-tree/nvim-web-devicons', -- not strictly required, but recommended
'MunifTanjim/nui.nvim',
2024-01-19 23:21:52 -08:00
},
2024-01-23 01:17:49 -08:00
config = function()
2024-01-19 23:21:52 -08:00
require('neo-tree').setup {}
end,
}