mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2025-01-10 20:19:48 +01:00
39 lines
1,001 B
Nix
39 lines
1,001 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkIf;
|
|
inherit (lib.nvim.dag) entryAnywhere;
|
|
inherit (lib.nvim.lua) toLuaObject;
|
|
|
|
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"
|
|
];
|
|
|
|
lsp.lspSignature.setupOpts = {
|
|
bind = config.vim.ui.borders.plugins.lsp-signature.enable;
|
|
handler_opts.border = config.vim.ui.borders.plugins.lsp-signature.style;
|
|
};
|
|
|
|
pluginRC.lsp-signature = entryAnywhere ''
|
|
-- Enable lsp signature viewer
|
|
require("lsp_signature").setup(${toLuaObject cfg.lspSignature.setupOpts})
|
|
'';
|
|
};
|
|
};
|
|
}
|