mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-08 10:15:59 +01:00
9 lines
188 B
Nix
9 lines
188 B
Nix
{lib, ...}: let
|
|
inherit (lib.options) mkEnableOption;
|
|
in {
|
|
options.vim.lsp = {
|
|
lspSignature = {
|
|
enable = mkEnableOption "lsp signature viewer [lsp-signature]";
|
|
};
|
|
};
|
|
}
|