From c547e8a049ce53b46c20541d545dcca53f148c96 Mon Sep 17 00:00:00 2001 From: Daniel McKnight Date: Fri, 16 May 2025 17:47:35 -0700 Subject: [PATCH 1/2] Remove unused file --- config.toml | 1 - 1 file changed, 1 deletion(-) delete mode 120000 config.toml diff --git a/config.toml b/config.toml deleted file mode 120000 index e034693..0000000 --- a/config.toml +++ /dev/null @@ -1 +0,0 @@ -/home/d_mcknight/.dotfiles/alacritty/config.toml \ No newline at end of file From e6d297a9d0ac280595f42f45a6707f4975f8444e Mon Sep 17 00:00:00 2001 From: Daniel McKnight Date: Fri, 16 May 2025 17:48:12 -0700 Subject: [PATCH 2/2] 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' + } + } + } } }