mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-08 00:05:57 +01:00
9 lines
199 B
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";
|
|
};
|
|
};
|
|
}
|