2023-06-06 03:05:05 +03:00
|
|
|
{
|
|
|
|
|
config,
|
|
|
|
|
lib,
|
|
|
|
|
...
|
2023-11-06 17:50:27 -07:00
|
|
|
}: let
|
2024-03-16 16:25:30 +03:00
|
|
|
inherit (lib.modules) mkIf;
|
2025-02-28 03:34:03 +03:00
|
|
|
inherit (lib.nvim.lua) toLuaObject;
|
2024-03-16 16:25:30 +03:00
|
|
|
inherit (lib.nvim.dag) entryAnywhere;
|
2023-11-06 17:50:27 -07:00
|
|
|
|
2023-06-06 03:05:05 +03:00
|
|
|
cfg = config.vim.ui.illuminate;
|
|
|
|
|
in {
|
|
|
|
|
config = mkIf cfg.enable {
|
2025-02-28 03:34:03 +03:00
|
|
|
vim = {
|
|
|
|
|
startPlugins = ["vim-illuminate"];
|
2023-06-06 03:05:05 +03:00
|
|
|
|
2025-02-28 03:34:03 +03:00
|
|
|
# vim-illuminate does not have a setup function. It is instead called 'configure'
|
|
|
|
|
# and does what you expect from a setup function. Wild.
|
|
|
|
|
pluginRC.vim-illuminate = entryAnywhere ''
|
|
|
|
|
require('illuminate').configure(${toLuaObject cfg.setupOpts})
|
|
|
|
|
'';
|
|
|
|
|
};
|
2023-06-06 03:05:05 +03:00
|
|
|
};
|
|
|
|
|
}
|