🔧 Overhaul for performance

This commit is contained in:
z3rOR0ne 2025-03-29 12:48:37 -07:00
parent 9e1b046074
commit 6365ecfe66
37 changed files with 487 additions and 345 deletions

View file

@ -0,0 +1,16 @@
return {
"rinx/nvim-ripgrep",
config = function()
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,
})
end,
}