Include lua config to show hidded files

This commit is contained in:
Daniel McKnight 2025-05-16 17:48:12 -07:00
parent c547e8a049
commit e6d297a9d0

View file

@ -8,9 +8,15 @@ return {
-- {"3rd/image.nvim", opts = {}}, -- Optional image support in preview window: See `# Preview Mode` for more information -- {"3rd/image.nvim", opts = {}}, -- Optional image support in preview window: See `# Preview Mode` for more information
}, },
lazy = false, -- neo-tree will lazily load itself lazy = false, -- neo-tree will lazily load itself
---@module "neo-tree"
---@type neotree.Config?
opts = { opts = {
-- fill any relevant options here filesystem = {
filtered_items = {
visible = true,
-- hide_dotfiles = false,
hide_by_name = {
'.git'
}
}
}
} }
} }