2023-02-01 19:11:37 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
2023-11-08 02:16:46 +00:00
|
|
|
}: let
|
2024-03-12 00:46:29 +00:00
|
|
|
inherit (lib.modules) mkIf;
|
|
|
|
inherit (lib.nvim.dag) entryAnywhere;
|
2023-11-08 02:16:46 +00:00
|
|
|
|
2023-02-01 19:11:37 +00:00
|
|
|
cfg = config.vim.lsp;
|
|
|
|
in {
|
|
|
|
config = mkIf (cfg.enable && cfg.lightbulb.enable) {
|
2024-03-12 00:46:29 +00:00
|
|
|
vim = {
|
|
|
|
startPlugins = ["nvim-lightbulb"];
|
2023-02-01 19:11:37 +00:00
|
|
|
|
2024-03-12 00:46:29 +00:00
|
|
|
luaConfigRC.lightbulb = entryAnywhere ''
|
|
|
|
vim.api.nvim_command('autocmd CursorHold,CursorHoldI * lua require\'nvim-lightbulb\'.update_lightbulb()')
|
2023-02-01 19:11:37 +00:00
|
|
|
|
2024-03-12 00:46:29 +00:00
|
|
|
-- Enable trouble diagnostics viewer
|
|
|
|
require'nvim-lightbulb'.setup()
|
|
|
|
'';
|
|
|
|
};
|
2023-02-01 19:11:37 +00:00
|
|
|
};
|
|
|
|
}
|