From 2cb236a26fa16fb337d1b88be7300f6cbc441946 Mon Sep 17 00:00:00 2001 From: leafee98 Date: Mon, 23 Oct 2023 15:30:22 +0800 Subject: [PATCH] don't hide git-ignored files from nvim-tree --- lua/plugins/10-editor.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lua/plugins/10-editor.lua b/lua/plugins/10-editor.lua index 550973b..6226ed8 100644 --- a/lua/plugins/10-editor.lua +++ b/lua/plugins/10-editor.lua @@ -68,7 +68,11 @@ return { "nvim-tree/nvim-web-devicons" }, main = "nvim-tree", - opts = { }, + opts = { + filters = { + git_ignored = false, + }, + }, lazy = false, keys = { { "t", "NvimTreeFocus", mode = "n" },