mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-12-15 23:53:43 +01:00
14 lines
266 B
Lua
14 lines
266 B
Lua
|
require("telescope").setup {
|
||
|
defaults = {
|
||
|
vimgrep_arguments = {
|
||
|
'rg',
|
||
|
'--color=never',
|
||
|
'--no-heading',
|
||
|
'--with-filename',
|
||
|
'--line-number',
|
||
|
'--column',
|
||
|
'--smart-case'
|
||
|
}
|
||
|
}
|
||
|
}
|