Completely revamped neovim config

This commit is contained in:
z3rOR0ne 2022-12-18 18:06:59 -08:00
parent 57bd1f9962
commit 4dac72aa1b
19 changed files with 810 additions and 0 deletions

View file

@ -0,0 +1,12 @@
-- 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,
}