28 lines
646 B
Lua
28 lines
646 B
Lua
return {
|
|
"nvim-tree/nvim-tree.lua",
|
|
dependencies = { "nvim-tree/nvim-web-devicons" },
|
|
config = function()
|
|
local nvimtree = require("nvim-tree")
|
|
|
|
nvimtree.setup({
|
|
sync_root_with_cwd = true,
|
|
view = {
|
|
width = 30,
|
|
},
|
|
git = {
|
|
ignore = false,
|
|
},
|
|
filters = {
|
|
dotfiles = false,
|
|
custom = {
|
|
"node_modules",
|
|
".git",
|
|
},
|
|
exclude = {
|
|
".gitignore",
|
|
},
|
|
},
|
|
})
|
|
end,
|
|
}
|