2023-06-04 09:24:06 +02:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
2023-11-07 01:50:27 +01:00
|
|
|
}: let
|
2024-03-16 14:25:30 +01:00
|
|
|
inherit (lib.modules) mkIf;
|
|
|
|
inherit (lib.nvim.dag) entryAnywhere;
|
2024-03-10 19:45:26 +01:00
|
|
|
inherit (lib.nvim.lua) toLuaObject;
|
2023-11-07 01:50:27 +01:00
|
|
|
|
2023-06-04 09:24:06 +02:00
|
|
|
cfg = config.vim.ui.colorizer;
|
|
|
|
in {
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
vim.startPlugins = [
|
|
|
|
"nvim-colorizer-lua"
|
|
|
|
];
|
|
|
|
|
2024-03-16 14:25:30 +01:00
|
|
|
vim.luaConfigRC.colorizer = entryAnywhere ''
|
2024-03-10 19:45:26 +01:00
|
|
|
require('colorizer').setup(${toLuaObject cfg.setupOpts})
|
2023-06-04 09:24:06 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|