1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

Add nvim-lspsignature

This commit is contained in:
jdhao 2021-07-04 14:44:48 +08:00
parent c1ba7af97e
commit ff9f9dcc16
2 changed files with 4 additions and 0 deletions

View File

@ -48,6 +48,8 @@ local on_attach = function(client, bufnr)
]], false)
end
require "lsp_signature".on_attach()
local msg = string.format('Language server %s started!' , client.name)
vim.api.nvim_echo({{msg, 'MoreMsg'}, }, false, {})
end

View File

@ -17,6 +17,8 @@ require('packer').startup(
-- nvim-lsp configuration
use 'neovim/nvim-lspconfig'
use 'ray-x/lsp_signature.nvim'
-- auto-completion engine
use 'hrsh7th/nvim-compe'