From e6d297a9d0ac280595f42f45a6707f4975f8444e Mon Sep 17 00:00:00 2001 From: Daniel McKnight Date: Fri, 16 May 2025 17:48:12 -0700 Subject: [PATCH] Include lua config to show hidded files --- nvim/lua/plugins/neotree.lua | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/nvim/lua/plugins/neotree.lua b/nvim/lua/plugins/neotree.lua index d6bf4f1..95df0f4 100644 --- a/nvim/lua/plugins/neotree.lua +++ b/nvim/lua/plugins/neotree.lua @@ -8,9 +8,15 @@ return { -- {"3rd/image.nvim", opts = {}}, -- Optional image support in preview window: See `# Preview Mode` for more information }, lazy = false, -- neo-tree will lazily load itself - ---@module "neo-tree" - ---@type neotree.Config? opts = { - -- fill any relevant options here + filesystem = { + filtered_items = { + visible = true, +-- hide_dotfiles = false, + hide_by_name = { + '.git' + } + } + } } }