nixos-config/sys/profiles/programs/zsh.nix
2025-01-16 10:08:58 +01:00

20 lines
405 B
Nix

{
# enable zsh autocompletion for system packages (systemd, etc)
environment.pathsToLink = ["/share/zsh"];
programs = {
less = {
enable = true;
envVariables.LESS = "--mouse";
};
zsh = {
enable = true;
autosuggestions.enable = true;
syntaxHighlighting = {
enable = true;
highlighters = ["main" "brackets" "pattern"];
};
};
};
}