mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2025-03-05 00:59:58 +01:00
add cmp ripgrep integration
This commit is contained in:
parent
24ec4bd6c6
commit
bdac955757
3 changed files with 6 additions and 2 deletions
|
@ -20,6 +20,7 @@ cmp.setup {
|
|||
{ name = "nvim_lsp" },
|
||||
{ name = "luasnips" },
|
||||
{ name = "crates" },
|
||||
{ name = "rg" },
|
||||
},
|
||||
}
|
||||
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
require("crates").setup {}
|
|
@ -35,8 +35,12 @@ local function cmp_plugins(use)
|
|||
|
||||
use {
|
||||
"Saecki/crates.nvim",
|
||||
config = pconf "nvim_crates",
|
||||
config = function()
|
||||
require("crates").setup {}
|
||||
end,
|
||||
}
|
||||
|
||||
use "lukas-reineke/cmp-rg"
|
||||
end
|
||||
|
||||
return require("packer").startup(function(use)
|
||||
|
|
Loading…
Add table
Reference in a new issue