mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2025-01-09 17:49:49 +01:00
Compare commits
No commits in common. "cd87a0f0f70f888e62631494cf8a8f18f02dfefb" and "2dc1a7fd19c46c2f55872474610a36b6c171e4a2" have entirely different histories.
cd87a0f0f7
...
2dc1a7fd19
3 changed files with 1 additions and 17 deletions
|
@ -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`.
|
||||||
|
|
|
@ -173,7 +173,7 @@ in {
|
||||||
''}
|
''}
|
||||||
|
|
||||||
${optionalString usingBlinkCmp ''
|
${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;
|
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"
|
||||||
|
|
Loading…
Reference in a new issue