diff --git a/lua/plugins/folke.lua b/lua/plugins/folke.lua index 1238038..17fc057 100644 --- a/lua/plugins/folke.lua +++ b/lua/plugins/folke.lua @@ -90,6 +90,21 @@ return { end, desc = "Find Files (.Dotfiles)", }, + { + "//", + function() + Snacks.picker.grep({ hidden = true }) + end, + desc = "Grep (cwd)", + }, + { + "/", + function() + Snacks.picker.grep({ cwd = LazyVim.root(), hidden = true }) + end, + desc = "Grep (Root Dir)", + remap = true, + }, { "", "ff", desc = pickerRootDirDesc, remap = true }, { "e", "fe", desc = snacksRootDirDesc, remap = true }, { "E", "fE", desc = snacksCwdDesc, remap = true },