1
0
Fork 0

nvim: cmp: signature help

This commit is contained in:
tastytea 2022-08-13 03:56:24 +02:00
parent f4abe13a24
commit 157bf62324
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
1 changed files with 2 additions and 0 deletions

View File

@ -15,6 +15,7 @@ packer.use {
requires = 'https://github.com/L3MON4D3/LuaSnip'
},
'https://github.com/hrsh7th/cmp-nvim-lua',
'https://github.com/hrsh7th/cmp-nvim-lsp-signature-help'
},
config = function()
local cmp = require'cmp'
@ -64,6 +65,7 @@ packer.use {
sources = cmp.config.sources({
{ name = 'nvim_lsp' },
{ name = 'luasnip' },
{ name = 'nvim_lsp_signature_help' },
}, {
{ name = 'buffer' },
})