18 lines
418 B
Nix
18 lines
418 B
Nix
{...}: {
|
|
programs.zsh = {
|
|
enable = true;
|
|
enableAutosuggestions = true;
|
|
enableCompletion = true;
|
|
syntaxHighlighting.enable = true;
|
|
enableVteIntegration = true;
|
|
autocd = true;
|
|
historySubstringSearch.enable = true;
|
|
oh-my-zsh = {
|
|
enable = true;
|
|
plugins = ["colored-man-pages" "lol" "rand-quote"];
|
|
theme = "";
|
|
};
|
|
initExtra = "source ${./transient.zsh}\n";
|
|
};
|
|
}
|