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