17 lines
315 B
Nix
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" ];
|
|
};
|
|
};
|
|
}
|