mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-08 16:05:57 +01:00
11 lines
278 B
Nix
11 lines
278 B
Nix
{lib, ...}: let
|
|
inherit (lib.options) mkEnableOption;
|
|
inherit (lib.nvim.types) mkPluginSetupOption;
|
|
in {
|
|
options.vim.lsp = {
|
|
lspSignature = {
|
|
enable = mkEnableOption "lsp signature viewer";
|
|
setupOpts = mkPluginSetupOption "lsp-signature" {};
|
|
};
|
|
};
|
|
}
|