rose-pine-nix/modules/home-manager/zsh-syntax-highlighting.nix

17 lines
525 B
Nix
Raw Normal View History

2024-05-21 14:53:46 -07:00
{ config, lib, ... }:
let
inherit (config.catppuccin) sources;
inherit (lib) ctp;
cfg = config.programs.zsh.syntaxHighlighting.catppuccin;
enable = cfg.enable && config.programs.zsh.syntaxHighlighting.enable;
in
{
2024-05-21 14:53:46 -07:00
options.programs.zsh.syntaxHighlighting.catppuccin = ctp.mkCatppuccinOpt "zsh syntax highlighting";
config.programs.zsh = lib.mkIf enable {
initExtra = lib.mkBefore ''
source '${sources.zsh-syntax-highlighting}/themes/catppuccin_${cfg.flavour}-zsh-syntax-highlighting.zsh'
'';
};
}