mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 12:31:04 +00:00
17 lines
341 B
Lua
17 lines
341 B
Lua
return {
|
|
{
|
|
"nvim-neo-tree/neo-tree.nvim",
|
|
opts = {
|
|
filesystem = {
|
|
filtered_items = {
|
|
hide_dotfiles = false,
|
|
hide_gitignored = true,
|
|
always_show = { ".aws", ".circleci", ".github" },
|
|
always_show_by_pattern = {
|
|
".env*",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|