We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
blink.cmp
1 parent 50de96b commit 94c746eCopy full SHA for 94c746e
lua/astrocommunity/completion/blink-cmp/init.lua
@@ -139,7 +139,16 @@ return {
139
{
140
"AstroNvim/astrolsp",
141
optional = true,
142
- opts = function(_, opts) opts.capabilities = require("blink.cmp").get_lsp_capabilities(opts.capabilities) end,
+ opts = function(_, opts)
143
+ opts.capabilities = require("blink.cmp").get_lsp_capabilities(opts.capabilities)
144
+
145
+ -- disable AstroLSP signature help if `blink.cmp` is providing it
146
+ local blink_opts = require("astrocore").plugin_opts "blink.cmp"
147
+ if vim.tbl_get(blink_opts, "signature", "enabled") == true then
148
+ if not opts.features then opts.features = {} end
149
+ opts.features.signature_help = false
150
+ end
151
+ end,
152
},
153
154
"folke/lazydev.nvim",
0 commit comments