mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
14 lines
193 B
Nix
14 lines
193 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib;
|
|
with builtins; {
|
|
options.vim.lsp = {
|
|
lightbulb = {
|
|
enable = mkEnableOption "Lightbulb for code actions. Requires an emoji font";
|
|
};
|
|
};
|
|
}
|