From 638966334b9ea7579ed547735bd4168678ed390d Mon Sep 17 00:00:00 2001 From: vladstojna Date: Thu, 20 Apr 2023 20:25:42 +0100 Subject: [PATCH] hide dotfiles and ignored files by default in filetree --- lua/custom/plugins/filetree.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lua/custom/plugins/filetree.lua b/lua/custom/plugins/filetree.lua index 51ab1f49..25d2e420 100644 --- a/lua/custom/plugins/filetree.lua +++ b/lua/custom/plugins/filetree.lua @@ -15,9 +15,9 @@ return { }, filesystem = { filtered_items = { - visible = true, - hide_dotfiles = false, - hide_gitignored = false, + visible = false, + hide_dotfiles = true, + hide_gitignored = true, }, bind_to_cwd = false, follow_current_file = true,