12 lines
274 B
Lua
12 lines
274 B
Lua
-- Enable use of ripgrep
|
||
require("nvim-ripgrep").setup({
|
||
runner = require("nvim-ripgrep.run").ripgrep, -- grep command
|
||
prompt = "❯ ", -- prompt
|
||
window = {
|
||
width = 0.8,
|
||
border = "rounded",
|
||
},
|
||
open_qf_fn = function()
|
||
return vim.api.nvim_command("copen")
|
||
end,
|
||
})
|