diff --git a/lua/plugins/snacks.lua b/lua/plugins/snacks.lua index a93cded..49b9027 100644 --- a/lua/plugins/snacks.lua +++ b/lua/plugins/snacks.lua @@ -73,7 +73,7 @@ return { -- Top Pickers & Explorer { '', function() Snacks.picker.smart() end, desc = 'Smart Find Files' }, { 'b', function() Snacks.picker.buffers() end, desc = 'Buffers' }, - { 'l', function() Snacks.picker.grep() end, desc = 'Grep' }, + { 'l', function() Snacks.picker.grep({ cwd = vim.fn.getcwd() }) end, desc = 'Grep' }, { ':', function() Snacks.picker.command_history() end, desc = 'Command History' }, { 'n', function() Snacks.picker.notifications() end, desc = 'Notification History' }, { 'e', function() Snacks.explorer() end, desc = 'File Explorer' },