rose-pine-nix/modules/home-manager/zsh-syntax-highlighting.nix
seth 28e6d8a18d
feat(modules): add catppuccin.sources option (#129)
* feat(modules): add `catppuccin.sources` option

* refactor(modules)!: nvfetcher -> npins

npins gives us a nicer file to import that is a simple name value pair
of the port and the path in the store. this allows for easier overriding
with the catppuccin.sources option

* fix(modules): ensure default sources are applied to `catppuccin.sources`
2024-05-13 16:33:16 -04:00

20 lines
531 B
Nix

{ 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
{
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'
'';
};
}