From 983453e32cb35533a119725883c04436d16c0120 Mon Sep 17 00:00:00 2001 From: Lee Hanbury Date: Sun, 14 Aug 2022 16:55:45 +0100 Subject: [PATCH] Use `cmp.config.sources` (#1105) --- utils/vimrc.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/vimrc.vim b/utils/vimrc.vim index a83e71d31..cc940f3d7 100644 --- a/utils/vimrc.vim +++ b/utils/vimrc.vim @@ -36,10 +36,10 @@ cmp.setup { [''] = cmp.mapping.confirm({ select = true }) }, - sources = { + sources = cmp.config.sources({ { name = "nvim_lsp" }, { name = "buffer" }, - }, + }), } EOF