add lsp-signature.nvim (#142)

This commit is contained in:
siduck76 2021-08-07 11:25:23 +05:30
parent 232bb5fd7c
commit d4193727bd
3 changed files with 38 additions and 5 deletions

View file

@ -57,7 +57,7 @@ return packer.startup(
end
}
-- language related plugins
-- lsp stuff
use {
"nvim-treesitter/nvim-treesitter",
event = "BufRead",
@ -68,7 +68,7 @@ return packer.startup(
use {
"kabouzeid/nvim-lspinstall",
event = "BufEnter"
event = "BufRead"
}
use {
@ -87,6 +87,14 @@ return packer.startup(
end
}
use {
after = "nvim-lspconfig",
"ray-x/lsp_signature.nvim",
config = function()
require("plugins.others").signature()
end
}
-- load compe in insert mode only
use {
"hrsh7th/nvim-compe",