Add files via upload

This commit is contained in:
Vibhor Jain 2024-05-18 21:17:16 +01:00 committed by GitHub
parent 5aeddfdd5d
commit bf13999f9d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 242 additions and 91 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",
"mskelton/termicons.nvim",
},
config = function ()
require('neo-tree').setup {}
end,
}