Skip to content

Commit

Permalink
chore: Fix fuzzy finder
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotcourant committed Dec 20, 2023
1 parent e70165e commit cbd51a2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion nvim/lua/user/telescope.lua
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,13 @@ require('telescope').setup {
sort_lastused = true,
},
find_files = {
find_command = { "rg", "--files", "--hidden", "--glob", "!**/.git/*", "--glob", "!**/node_modules/*", "--glob", "!**/.clj-kondo/*" },
find_command = {
"rg", "--files", "--hidden",
"--glob", "!**/.git/*",
"--glob", "!**/node_modules/*",
"--glob", "!**/.clj-kondo/*",
"--glob", "!**/server/icons/sources/simple-icons/*",
},
}
},
}
Expand Down

0 comments on commit cbd51a2

Please sign in to comment.