1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2024-12-26 16:29:50 +01:00
neovim-flake/modules/lsp/lsp-signature/lsp-signature.nix
2023-03-31 05:20:35 +03:00

13 lines
166 B
Nix

{
config,
lib,
...
}:
with lib;
with builtins; {
options.vim.lsp = {
lspSignature = {
enable = mkEnableOption "lsp signature viewer";
};
};
}