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
2023-04-02 19:59:08 +03:00

13 lines
193 B
Nix

{
config,
lib,
...
}:
with lib;
with builtins; {
options.vim.lsp = {
lightbulb = {
enable = mkEnableOption "Lightbulb for code actions. Requires an emoji font";
};
};
}