diff --git a/lua/plugins/telescope.lua b/lua/plugins/telescope.lua index 47e1cbd..03a1890 100644 --- a/lua/plugins/telescope.lua +++ b/lua/plugins/telescope.lua @@ -31,7 +31,30 @@ return { }, pickers = { find_files = { - find_command = { 'rg', '-S', '--no-ignore-vcs', '--hidden', '--files', '-g', '!.git' }, + find_command = { + 'rg', + '-S', + '--no-ignore-vcs', + '--hidden', + '--files', + '-g', + '!.git', + }, + }, + live_grep = { + grep_command = { + 'rg', + '--no-ignore-vcs', + '--hidden', + '--color=never', + '--no-heading', + '--with-filename', + '--line-number', + '--column', + '--smart-case', + '-g', + '!.git', + }, }, }, }