added nvim-tree, autosave, and autopair plugins

This commit is contained in:
ZachHunn 2023-10-25 21:52:21 -10:00
parent f15af9b8be
commit c030ba8f5d
6 changed files with 145 additions and 23 deletions

View file

@ -0,0 +1,13 @@
return {
"nvim-tree/nvim-tree.lua",
version = "*",
lazy = false,
dependencies = {
"nvim-tree/nvim-web-devicons",
},
config = function()
require("nvim-tree").setup {
}
end,
}