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, },