mirror of
https://github.com/nix-community/home-manager
synced 2024-11-08 20:29:43 +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
23 lines
511 B
Nix
23 lines
511 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.zsh = {
|
|
enable = true;
|
|
syntaxHighlighting = {
|
|
enable = true;
|
|
package = pkgs.hello;
|
|
styles.comment = "fg=#6c6c6c";
|
|
};
|
|
};
|
|
|
|
test.stubs.zsh = { };
|
|
|
|
nmt.script = ''
|
|
assertFileContains home-files/.zshrc "source ${pkgs.hello}/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"
|
|
assertFileContains home-files/.zshrc "ZSH_HIGHLIGHT_STYLES['comment']='fg=#6c6c6c'"
|
|
'';
|
|
};
|
|
}
|