diff options
| author | pml68 <contact@pml68.dev> | 2024-12-16 23:55:48 +0100 |
|---|---|---|
| committer | pml68 <contact@pml68.dev> | 2024-12-16 23:55:48 +0100 |
| commit | 51638918596ed4f54fcb19abcee55edc01ed77a4 (patch) | |
| tree | 19bad8770762444551a68d433cbbf2e16762fb9d /lua/pml68/plugins/telescope.lua | |
| parent | refactor(plugins): replace rust.vim with fmt("rustfmt") in guard.nvim (diff) | |
| download | nvim-51638918596ed4f54fcb19abcee55edc01ed77a4.tar.gz | |
feat: new keymap for finding TODOs
Diffstat (limited to '')
| -rw-r--r-- | lua/pml68/plugins/telescope.lua | 7 |
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" }, + }, + }, + }, } |
