From bb4eb1f8c754ba642ed37bf981fdfe9bffb9b3a1 Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Sun, 13 Aug 2023 17:26:01 +0300 Subject: [PATCH] chore(nvim): don't show .null-ls_* --- config/astronvim/lua/user/plugins/core.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/astronvim/lua/user/plugins/core.lua b/config/astronvim/lua/user/plugins/core.lua index 9450910..a83667b 100644 --- a/config/astronvim/lua/user/plugins/core.lua +++ b/config/astronvim/lua/user/plugins/core.lua @@ -57,6 +57,9 @@ return { '.DS_Store', 'thumbs.db' }, + never_show_by_pattern = { -- uses glob style patterns + ".null-ls_*", + }, } return opts