nix-config/nixos/modules/zsh.nix

18 lines
318 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"];
};
};
}