From 3fc77f643351a9136c3c453d66a550cb4b11a275 Mon Sep 17 00:00:00 2001 From: poslop Date: Thu, 16 Jul 2026 08:53:38 -0500 Subject: [PATCH] hit .git in nvimtree --- lua/plugins/windows.lua | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lua/plugins/windows.lua b/lua/plugins/windows.lua index 71717e4..30190b0 100644 --- a/lua/plugins/windows.lua +++ b/lua/plugins/windows.lua @@ -7,7 +7,12 @@ return { "nvim-tree/nvim-web-devicons", }, config = function() - require("nvim-tree").setup {} + require("nvim-tree").setup { + filters = { + dotfiles = false, + custom = { "^.git$" }, + }, + } end, },