1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2025-02-03 06:59:48 +01:00
neovim-flake/modules/plugins/lsp/lightbulb/lightbulb.nix

12 lines
306 B
Nix
Raw Normal View History

{lib, ...}: let
inherit (lib.options) mkEnableOption;
2024-12-09 15:01:32 +01:00
inherit (lib.nvim.types) mkPluginSetupOption;
in {
options.vim.lsp = {
lightbulb = {
enable = mkEnableOption "Lightbulb for code actions. Requires an emoji font";
2024-12-09 15:01:32 +01:00
setupOpts = mkPluginSetupOption "nvim-lightbulb" {};
};
};
}