From e9a413c15c2477d912cbebfd57c1445a6b6875af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Jane=C5=BEi=C4=8D?= Date: Tue, 21 Mar 2023 16:00:33 +0100 Subject: [PATCH] common: add luatree --- lua/plugins/common.lua | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/lua/plugins/common.lua b/lua/plugins/common.lua index 4747f49..85da808 100644 --- a/lua/plugins/common.lua +++ b/lua/plugins/common.lua @@ -135,7 +135,15 @@ return { -- Unless you are still migrating, remove the deprecated commands from v1.x vim.cmd([[ let g:neo_tree_remove_legacy_commands = 1 ]]) - require('neo-tree').setup {} + require('neo-tree').setup { + filesystem = { + filtered_items = { + visible = true, + hide_dotfiles = false, + hide_gitignored = false, + }, + } + } end, }, }