mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 03:21:14 +00:00
12 lines
278 B
Nix
12 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" {};
|
|
};
|
|
};
|
|
}
|