elas-arch-config/nvim/.config/nvim/lua/plugins/file_tree.lua
2024-07-22 22:18:54 +02:00

25 lines
592 B
Lua

return {
{
"nvim-tree/nvim-tree.lua",
dependencies = { "nvim-tree/nvim-web-devicons" },
keys = {
{
"<Leader>j",
"<Cmd>NvimTreeFindFileToggle<CR>",
desc = "Toggle file tree",
},
},
opts = {
filters = {
custom = { "^.DS_Store$", "^.git$" },
},
renderer = {
icons = {
show = {
git = false,
},
},
},
},
},
}