mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2025-01-09 05:39:49 +01:00
Compare commits
1 commit
83015c985a
...
6e3f8e12e6
Author | SHA1 | Date | |
---|---|---|---|
|
6e3f8e12e6 |
3 changed files with 1 additions and 17 deletions
|
@ -15,12 +15,6 @@
|
|||
|
||||
- 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):
|
||||
|
||||
- Add Odin support under `vim.languages.odin`.
|
||||
|
|
|
@ -173,7 +173,7 @@ in {
|
|||
''}
|
||||
|
||||
${optionalString usingBlinkCmp ''
|
||||
capabilities = require('blink.cmp').get_lsp_capabilities()
|
||||
capabilities = require('blink.cmp').get_lsp_capabilities(capabilities)
|
||||
''}
|
||||
'';
|
||||
};
|
||||
|
|
|
@ -10,16 +10,6 @@
|
|||
cfg = config.vim.lsp;
|
||||
in {
|
||||
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 = {
|
||||
startPlugins = [
|
||||
"lsp-signature"
|
||||
|
|
Loading…
Reference in a new issue