neovim-flake/modules/lsp/lightbulb/lightbulb.nix

14 lines
207 B
Nix

{
config,
lib,
...
}: let
inherit (lib) mkEnableOption;
in {
options.vim.lsp = {
lightbulb = {
enable = mkEnableOption "Lightbulb for code actions. Requires an emoji font";
};
};
}