aboutsummaryrefslogtreecommitdiff
path: root/lua/pml68
diff options
context:
space:
mode:
authorpml68 <contact@pml68.dev>2024-12-18 14:39:47 +0100
committerpml68 <contact@pml68.dev>2024-12-18 14:39:47 +0100
commit1e60fd76fb9aed048ff753eb2c3dccb64666edf8 (patch)
tree042c6a9b89783bd26ca97de85c034d6c2f0f1e81 /lua/pml68
parentfix: forgot to add ghcr.io/... before image name (diff)
downloadnvim-1e60fd76fb9aed048ff753eb2c3dccb64666edf8.tar.gz
feat: remove `--hidden` flag from telescope find_command
Diffstat (limited to '')
-rw-r--r--lua/pml68/plugins/telescope.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/pml68/plugins/telescope.lua b/lua/pml68/plugins/telescope.lua
index b11e28d..86396ed 100644
--- a/lua/pml68/plugins/telescope.lua
+++ b/lua/pml68/plugins/telescope.lua
@@ -8,7 +8,7 @@ return {
opts = {
pickers = {
find_files = {
- find_command = { "rg", "--files", "--hidden" },
+ find_command = { "rg", "--files" },
},
},
},