lightbulb: add setupOpts option

This commit is contained in:
Omar Abragh 2024-12-09 14:01:32 +00:00
commit 3cdf557acd
2 changed files with 4 additions and 1 deletions

View file

@ -1,9 +1,11 @@
{lib, ...}: let
inherit (lib.options) mkEnableOption;
inherit (lib.nvim.types) mkPluginSetupOption;
in {
options.vim.lsp = {
lightbulb = {
enable = mkEnableOption "Lightbulb for code actions. Requires an emoji font";
setupOpts = mkPluginSetupOption "nvim-lightbulb" {};
};
};
}