From 10b91ba44570096ccd2fe5109fedd025609f563d Mon Sep 17 00:00:00 2001 From: tikikun Date: Wed, 6 Sep 2023 13:55:15 +0700 Subject: [PATCH] no hiding --- lua/custom/plugins/filetree.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lua/custom/plugins/filetree.lua b/lua/custom/plugins/filetree.lua index 69017789..92c370c7 100644 --- a/lua/custom/plugins/filetree.lua +++ b/lua/custom/plugins/filetree.lua @@ -13,6 +13,9 @@ return { sources = { "filesystem", "buffers", "git_status", "document_symbols" }, open_files_do_not_replace_types = { "terminal", "Trouble", "qf", "Outline" }, filesystem = { + visible = true, -- This is what you want: If you set this to `true`, all "hide" just mean "dimmed out" + hide_dotfiles = false, + hide_gitignored = false, bind_to_cwd = false, follow_current_file = { enabled = true }, use_libuv_file_watcher = true, @@ -31,4 +34,4 @@ return { }, }, } -} \ No newline at end of file +}