1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-07-01 19:49:25 +00:00

[neovim] Show hidden files (except .git) when using find_files on telescope

This commit is contained in:
2022-10-01 17:57:53 +02:00
parent 5aecb9f369
commit 4b51f8d6cd

View File

@ -22,6 +22,9 @@ telescope.setup({
},
},
pickers = {
find_files = {
find_command = { "fd", "--hidden", "--type=file", "--exclude=.git" },
},
live_grep = {
additional_args = function()
return { "--hidden", "-g", "!.git/" }