Files
Dotfiles/private_dot_config/nvim/lua/custom/plugins/filetree.lua
2023-07-14 21:39:53 -05:00

15 lines
298 B
Lua

vim.cmd([[ let g:neo_tree_remove_legacy_commands = 1 ]])
return {
"nvim-neo-tree/neo-tree.nvim",
version = "*",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons",
"MunifTanjim/nui.nvim",
},
config = function ()
require('neo-tree').setup {}
end,
}