Actually add the file

This commit is contained in:
Titus Moore 2023-04-12 17:59:47 -04:00
parent 4eba0d9b6d
commit bd200c89c2
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
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,
}