mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-15 18:05:59 +01:00
a0197fe1bb
The "new" DAG order is as follows: - (luaConfigPre) - globalsScript - basic - theme - pluginConfigs - extraPluginConfigs - mappings - (luaConfigPost)
29 lines
685 B
Nix
29 lines
685 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) {
|
|
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})
|
|
'';
|
|
};
|
|
};
|
|
}
|