mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 18:59:44 +01:00
f5f64ac022
* zsh: allow setting custom syntax highlighting styles Custom styles allow overriding the default colors. Example: ```nix zsh.syntaxHighlighting.styles.comment = "fg=#6c6c6c"; ``` See https://github.com/zsh-users/zsh-syntax-highlighting/blob/master/docs/highlighters.md * zsh: allow configuring syntax-highlighting package
11 lines
521 B
Nix
11 lines
521 B
Nix
{
|
|
zsh-session-variables = ./session-variables.nix;
|
|
zsh-history-path-new-default = ./history-path-new-default.nix;
|
|
zsh-history-path-new-custom = ./history-path-new-custom.nix;
|
|
zsh-history-path-old-default = ./history-path-old-default.nix;
|
|
zsh-history-path-old-custom = ./history-path-old-custom.nix;
|
|
zsh-history-ignore-pattern = ./history-ignore-pattern.nix;
|
|
zsh-history-substring-search = ./history-substring-search.nix;
|
|
zsh-prezto = ./prezto.nix;
|
|
zsh-syntax-highlighting = ./syntax-highlighting.nix;
|
|
}
|