1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2025-02-12 23:03:19 +01:00
neovim-flake/modules/lsp/lightbulb/lightbulb.nix

13 lines
207 B
Nix

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