Add Neo-Tree plugin

This commit is contained in:
Markus Ullmann 2023-07-26 14:41:06 +02:00 committed by Markus Ullmann
parent b4273a1f52
commit b220b0756d
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
-- Unless you are still migrating, remove the deprecated commands from v1.x
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", -- not strictly required, but recommended
"MunifTanjim/nui.nvim",
},
config = function ()
require('neo-tree').setup {}
end,
}