etc/nvim/lua/plugin/tree.lua

16 lines
233 B
Lua
Raw Normal View History

2023-08-26 10:50:49 +03:00
return {
"nvim-tree/nvim-tree.lua",
2023-08-26 15:41:06 +03:00
git = {
disable = true,
2023-08-27 13:31:42 +03:00
enable = false,
2023-08-26 15:41:06 +03:00
},
2023-08-26 10:50:49 +03:00
version = "*",
lazy = false,
dependencies = {
"nvim-tree/nvim-web-devicons",
},
config = function()
require("nvim-tree").setup {}
end,
}