aboutsummaryrefslogtreecommitdiff
path: root/lua/pml68/plugins/telescope.lua
diff options
context:
space:
mode:
authorpml68 <contact@pml68.dev>2024-12-16 23:55:48 +0100
committerpml68 <contact@pml68.dev>2024-12-16 23:55:48 +0100
commit51638918596ed4f54fcb19abcee55edc01ed77a4 (patch)
tree19bad8770762444551a68d433cbbf2e16762fb9d /lua/pml68/plugins/telescope.lua
parentrefactor(plugins): replace rust.vim with fmt("rustfmt") in guard.nvim (diff)
downloadnvim-51638918596ed4f54fcb19abcee55edc01ed77a4.tar.gz
feat: new keymap for finding TODOs
Diffstat (limited to 'lua/pml68/plugins/telescope.lua')
-rw-r--r--lua/pml68/plugins/telescope.lua7
1 files changed, 7 insertions, 0 deletions
diff --git a/lua/pml68/plugins/telescope.lua b/lua/pml68/plugins/telescope.lua
index 9c5de69..b11e28d 100644
--- a/lua/pml68/plugins/telescope.lua
+++ b/lua/pml68/plugins/telescope.lua
@@ -5,4 +5,11 @@ return {
dependencies = {
"nvim-lua/plenary.nvim"
},
+ opts = {
+ pickers = {
+ find_files = {
+ find_command = { "rg", "--files", "--hidden" },
+ },
+ },
+ },
}