mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-12-19 14:29:48 +01:00
73660af2e3
Co-authored-by: Ching Pei Yang <59727193+horriblename@users.noreply.github.com> Co-authored-by: raf <raf@notashelf.dev>
11 lines
306 B
Nix
11 lines
306 B
Nix
{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" {};
|
|
};
|
|
};
|
|
}
|