diff --git a/.config/nvim/lua/my/tools.lua b/.config/nvim/lua/my/tools.lua index f230cd8..b06cf23 100644 --- a/.config/nvim/lua/my/tools.lua +++ b/.config/nvim/lua/my/tools.lua @@ -16,7 +16,15 @@ telescope.setup({ ["?"] = t_actions.which_key, } }, - file_ignore_patterns = { '^\\.git' } + defaults = { + file_ignore_patterns = { '^\\.git', '^fun' }, + }, + pickers = { + find_files = { + -- show hidden files by default + find_command = { "rg", "--files", "--hidden", "--glob", "!.git/*" } + } + } }) local t_builtin = require('telescope.builtin')