Skip to content

Commit

Permalink
fix(lsp-signature-nvim): corrected lazy spec and disable conflicts fe…
Browse files Browse the repository at this point in the history
…atures from `noice-nvim` (#1079)

refactor(lsp-signature-nvim): corrected lazy spec and disable conflicts features from `noice-nvim`
  • Loading branch information
manuuurino authored Jul 2, 2024
1 parent 77ee4b6 commit 03bf3a5
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions lua/astrocommunity/lsp/lsp-signature-nvim/init.lua
Original file line number Diff line number Diff line change
@@ -1,9 +1,22 @@
---@type LazySpec
return {
"neovim/nvim-lspconfig",
dependencies = {
{
"ray-x/lsp_signature.nvim",
event = "User AstroFile",
main = "lsp_signature",
opts = {
hint_enable = false, -- disable hints as it will crash in some terminal
},
},
{
"folke/noice.nvim",
optional = true,
---@type NoiceConfig
opts = {
lsp = {
signature = { enabled = false },
hover = { enabled = false },
},
},
},
}

0 comments on commit 03bf3a5

Please sign in to comment.