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

9 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";
};
};
}