From b346bbdf4b6c2846dc5b3b2c6e48fb877f78ddf6 Mon Sep 17 00:00:00 2001 From: Wolfgang Hottgenroth Date: Tue, 6 Jun 2023 17:15:32 +0200 Subject: [PATCH] ignore gitignore in fileexplorer --- lua/file-explorer.lua | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lua/file-explorer.lua b/lua/file-explorer.lua index 22df0fe..3c74ca9 100644 --- a/lua/file-explorer.lua +++ b/lua/file-explorer.lua @@ -4,5 +4,12 @@ vim.g.loaded_netrwPlugin = 1 -- vim.opt.termguicolors = true require("nvim-tree").setup({ + filters = { + dotfiles = false, + git_clean = false + }, + git = { + ignore = false + } })