plugins/highlight-colors: init

This commit is contained in:
Gaetan Lepage 2025-03-30 14:53:10 +02:00
parent 81fdde9fc5
commit a3b16fa004
2 changed files with 82 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{
lib,
config,
...
}:
lib.nixvim.plugins.mkNeovimPlugin {
name = "highlight-colors";
packPathName = "nvim-highlight-colors";
package = "nvim-highlight-colors";
moduleName = "nvim-highlight-colors";
maintainers = [ lib.maintainers.GaetanLepage ];
settingsExample = {
render = "virtual";
virtual_symbol = "";
enable_named_colors = true;
};
extraOptions = {
cmpIntegration = lib.mkEnableOption "cmp-integration for nvim-highlight-colors.";
};
extraConfig = cfg: {
opts.termguicolors = lib.mkDefault true;
plugins.cmp.settings.formatting.format = lib.mkIf cfg.cmpIntegration (
lib.nixvim.mkRaw "require('nvim-highlight-colors').format"
);
warnings = lib.nixvim.mkWarnings "plugins.highlight-colors" {
when = cfg.cmpIntegration && !config.plugins.cmp.enable;
message = ''
You have enabled the cmp integration with highlight-colors but `plugins.highlight-colors` is not enabled.
'';
};
};
}