This commit is contained in:
Norm Rasmussen
2022-08-30 20:49:50 -04:00
parent 709e311774
commit 0caf3e98ac
3 changed files with 9 additions and 37 deletions

View File

@ -5,9 +5,15 @@
-- Plugin: nvim-cmp
-- url: https://github.com/hrsh7th/nvim-cmpa
local cmp_status_ok, cmp = pcall(require, 'cmp')
if not cmp_status_ok then
return
end
local cmp = require 'cmp'
local luasnip = require 'luasnip'
local luasnip_status_ok, luasnip = pcall(require, 'luasnip')
if not luasnip_status_ok then
return
end
cmp.setup {
-- Load snippet support