nix-config/nixos/modules/zsh.nix
2021-06-27 22:45:34 +02:00

14 lines
312 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" ];
};
};
}