add lsp-signature.nvim (#142)
This commit is contained in:
parent
232bb5fd7c
commit
d4193727bd
3 changed files with 38 additions and 5 deletions
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue