add - autopairs

add- filetree
remove c cpp support
This commit is contained in:
alinademi 2023-02-20 21:52:44 -08:00
parent 72364ad9ac
commit 1a50da15c9
3 changed files with 24 additions and 1 deletions

View file

@ -0,0 +1,15 @@
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 ()
-- Unless you are still migrating, remove the deprecated commands from v1.x
vim.cmd([[ let g:neo_tree_remove_legacy_commands = 1 ]])
require('neo-tree').setup {}
end,
}