mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-15 15:45:59 +01:00
a0197fe1bb
The "new" DAG order is as follows: - (luaConfigPre) - globalsScript - basic - theme - pluginConfigs - extraPluginConfigs - mappings - (luaConfigPost)
23 lines
509 B
Nix
23 lines
509 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkIf;
|
|
inherit (lib.nvim.dag) entryAnywhere;
|
|
|
|
cfg = config.vim.lsp;
|
|
in {
|
|
config = mkIf (cfg.enable && cfg.lightbulb.enable) {
|
|
vim = {
|
|
startPlugins = ["nvim-lightbulb"];
|
|
|
|
pluginRC.lightbulb = entryAnywhere ''
|
|
vim.api.nvim_command('autocmd CursorHold,CursorHoldI * lua require\'nvim-lightbulb\'.update_lightbulb()')
|
|
|
|
-- Enable trouble diagnostics viewer
|
|
require'nvim-lightbulb'.setup()
|
|
'';
|
|
};
|
|
};
|
|
}
|