added nvim-tree

This commit is contained in:
Steven Moon 2023-12-20 11:46:34 -05:00
parent 76c5b1ec57
commit e310632994
2 changed files with 15 additions and 6 deletions

View file

@ -2,4 +2,14 @@
-- I promise not to create any merge conflicts in this directory :)
--
-- See the kickstart.nvim README for more information
return {}
return {
"nvim-tree/nvim-tree.lua",
version = "*",
lazy = true,
dependencies = {
"nvim-tree/nvim-web-devicons",
},
config = function()
require("nvim-tree").setup {}
end,
}