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

10 lines
199 B
Nix

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