mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
23 lines
489 B
Nix
23 lines
489 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib;
|
|
with builtins; let
|
|
cfg = config.vim.lsp;
|
|
in {
|
|
config = mkIf (cfg.enable && cfg.lightbulb.enable) {
|
|
vim.startPlugins = ["nvim-lightbulb"];
|
|
|
|
vim.configRC.lightbulb = nvim.dag.entryAnywhere ''
|
|
autocmd CursorHold,CursorHoldI * lua require'nvim-lightbulb'.update_lightbulb()
|
|
'';
|
|
|
|
vim.luaConfigRC.lightbulb = nvim.dag.entryAnywhere ''
|
|
-- Enable trouble diagnostics viewer
|
|
require'nvim-lightbulb'.setup()
|
|
'';
|
|
};
|
|
}
|