20 lines
405 B
Nix
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"];
|
|
};
|
|
};
|
|
};
|
|
}
|