nvf/modules/lsp/lightbulb/lightbulb.nix
2023-04-02 19:16:04 +03:00

14 lines
190 B
Nix

{
config,
lib,
...
}:
with lib;
with builtins; {
options.vim.lsp = {
lightbulb = {
enable = mkEnableOption "lightbulb for code actions. Requires emoji font";
};
};
}