Fix cmp loading order

This commit is contained in:
ViViDboarder 2021-12-10 17:10:40 -08:00
parent 0e30786617
commit 04bbeac02b
1 changed files with 4 additions and 4 deletions

View File

@ -215,11 +215,11 @@ return require('packer').startup(function(use)
"hrsh7th/nvim-cmp",
config = function() require("plugins.completion").config_cmp() end,
requires = {
"hrsh7th/cmp-nvim-lsp",
"hrsh7th/cmp-buffer",
"f3fora/cmp-spell",
{ "hrsh7th/cmp-nvim-lsp", after = "nvim-cmp" },
{ "hrsh7th/cmp-buffer", after = "nvim-cmp" },
{ "f3fora/cmp-spell", after = "nvim-cmp" },
{ "saadparwaiz1/cmp_luasnip", after = "nvim-cmp" },
"L3MON4D3/LuaSnip",
"saadparwaiz1/cmp_luasnip",
},
event = "InsertEnter *",
}