From 641d2e0c9ef61bcedb0df3055d5adcffc916761a Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Mon, 4 Apr 2022 15:15:11 +0200 Subject: [PATCH] Load cmp_luasnip after luasnip --- lua/my_plugins.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/my_plugins.lua b/lua/my_plugins.lua index 03a4085..ac4f1a8 100644 --- a/lua/my_plugins.lua +++ b/lua/my_plugins.lua @@ -84,7 +84,7 @@ return require('packer').startup(function() { 'hrsh7th/cmp-buffer', after = 'nvim-cmp' }, { 'hrsh7th/cmp-nvim-lsp', after = 'nvim-cmp' }, { 'L3MON4D3/LuaSnip', after = 'nvim-cmp' }, - { 'saadparwaiz1/cmp_luasnip', after = 'nvim-cmp' }, + { 'saadparwaiz1/cmp_luasnip', after = {'nvim-cmp', 'LuaSnip'} }, { 'hrsh7th/cmp-nvim-lua', after = 'nvim-cmp' }, { 'octaltree/cmp-look', after = 'nvim-cmp' }, { 'hrsh7th/cmp-path', after = 'nvim-cmp' },