mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 19:41:15 +00:00
10 lines
199 B
Nix
10 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";
|
|
};
|
|
};
|
|
}
|