Compare commits

..

No commits in common. "cd87a0f0f70f888e62631494cf8a8f18f02dfefb" and "2dc1a7fd19c46c2f55872474610a36b6c171e4a2" have entirely different histories.

3 changed files with 1 additions and 17 deletions

View file

@ -15,12 +15,6 @@
- Add Haskell support under `vim.languages.haskell` using [haskell-tools.nvim]. - Add Haskell support under `vim.languages.haskell` using [haskell-tools.nvim].
[horriblename](https://github.com/horriblename):
[blink.cmp]: https://github.com/saghen/blink.cmp
- Add [blink.cmp] support
[diniamo](https://github.com/diniamo): [diniamo](https://github.com/diniamo):
- Add Odin support under `vim.languages.odin`. - Add Odin support under `vim.languages.odin`.

View file

@ -173,7 +173,7 @@ in {
''} ''}
${optionalString usingBlinkCmp '' ${optionalString usingBlinkCmp ''
capabilities = require('blink.cmp').get_lsp_capabilities() capabilities = require('blink.cmp').get_lsp_capabilities(capabilities)
''} ''}
''; '';
}; };

View file

@ -10,16 +10,6 @@
cfg = config.vim.lsp; cfg = config.vim.lsp;
in { in {
config = mkIf (cfg.enable && cfg.lspSignature.enable) { config = mkIf (cfg.enable && cfg.lspSignature.enable) {
assertions = [
{
assertion = !config.vim.autocomplete.blink-cmp.enable;
message = ''
lsp-signature does not work with blink.cmp. Please use blink.cmp's builtin signature feature:
vim.autocomplete.blink-cmp.setupOpts.signature.enabled = true;
'';
}
];
vim = { vim = {
startPlugins = [ startPlugins = [
"lsp-signature" "lsp-signature"