From fe1ff19aaacaed851fc0b981445589b57bf3772b Mon Sep 17 00:00:00 2001 From: C4 Patino Date: Wed, 28 Aug 2024 11:38:29 -0500 Subject: [PATCH] Added .git to list of nvimtree ignored folders --- lua/configs/nvimtree.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/configs/nvimtree.lua b/lua/configs/nvimtree.lua index fc8cffc..cb574f0 100644 --- a/lua/configs/nvimtree.lua +++ b/lua/configs/nvimtree.lua @@ -2,8 +2,8 @@ local options = { filters = { dotfiles = false, git_ignored = true, - custom = { "git/", "node_modules/", "venv/", "__pycache__" }, - exclude = { }, + custom = { ".git" }, + exclude = { ".gitignore", ".gitattributes", ".gitmodules" }, }, disable_netrw = true, hijack_netrw = true,