mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-12-23 04:07:37 +00:00
Fix cmp loading order
This commit is contained in:
parent
0e30786617
commit
04bbeac02b
@ -215,11 +215,11 @@ return require('packer').startup(function(use)
|
|||||||
"hrsh7th/nvim-cmp",
|
"hrsh7th/nvim-cmp",
|
||||||
config = function() require("plugins.completion").config_cmp() end,
|
config = function() require("plugins.completion").config_cmp() end,
|
||||||
requires = {
|
requires = {
|
||||||
"hrsh7th/cmp-nvim-lsp",
|
{ "hrsh7th/cmp-nvim-lsp", after = "nvim-cmp" },
|
||||||
"hrsh7th/cmp-buffer",
|
{ "hrsh7th/cmp-buffer", after = "nvim-cmp" },
|
||||||
"f3fora/cmp-spell",
|
{ "f3fora/cmp-spell", after = "nvim-cmp" },
|
||||||
|
{ "saadparwaiz1/cmp_luasnip", after = "nvim-cmp" },
|
||||||
"L3MON4D3/LuaSnip",
|
"L3MON4D3/LuaSnip",
|
||||||
"saadparwaiz1/cmp_luasnip",
|
|
||||||
},
|
},
|
||||||
event = "InsertEnter *",
|
event = "InsertEnter *",
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user