nix-config/nixos/modules/zsh.nix
2022-08-04 21:13:54 +02:00

17 lines
315 B
Nix

{ config
, pkgs
, lib
, ...
}: {
programs.zsh = {
enable = true;
autosuggestions.enable = true;
enableCompletion = true;
histSize = 100000;
vteIntegration = true;
syntaxHighlighting = {
enable = true;
highlighters = [ "main" "brackets" "pattern" "root" "line" ];
};
};
}