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

View File

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