nixos/home/zsh/default.nix

18 lines
418 B
Nix
Raw Normal View History

2024-02-11 06:53:37 +00:00
{...}: {
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 = "";
};
2024-02-11 07:01:58 +00:00
initExtra = "source ${./transient.zsh}\n";
2024-02-11 06:53:37 +00:00
};
}