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

14 lines
193 B
Nix

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