28 lines
827 B
Lua
28 lines
827 B
Lua
return
|
|
{ "nvim-neo-tree/neo-tree.nvim",
|
|
branch = "v3.x",
|
|
dependencies = {
|
|
"nvim-lua/plenary.nvim",
|
|
"nvim-tree/nvim-web-devicons",
|
|
"MunifTanjim/nui.nvim",
|
|
},
|
|
config = function()
|
|
require("neo-tree").setup({
|
|
filesystem = {
|
|
filtered_items = {
|
|
visible = true,
|
|
show_hidden_count = true,
|
|
hide_dotfiles = false,
|
|
hide_gitignored = false,
|
|
hide_by_name = {
|
|
-- add extension names you want to explicitly exclude
|
|
-- '.git',
|
|
-- '.DS_Store',
|
|
-- 'thumbs.db',
|
|
},
|
|
never_show = {},
|
|
},
|
|
},
|
|
})
|
|
end,
|
|
}
|