✨ New neovim config based off theprimeagen
This commit is contained in:
parent
74983413b8
commit
393c9eaa8a
19 changed files with 810 additions and 0 deletions
12
.config/nvim/after/plugin/ripgrep.lua
Normal file
12
.config/nvim/after/plugin/ripgrep.lua
Normal 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,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue