17 lines
282 B
Nix
17 lines
282 B
Nix
{
|
|
programs.zsh = {
|
|
enable = true;
|
|
enableCompletion = true;
|
|
enableVteIntegration = true;
|
|
autocd = true;
|
|
autosuggestion.enable = true;
|
|
|
|
oh-my-zsh = {
|
|
enable = true;
|
|
plugins = [
|
|
"git" "sudo"
|
|
];
|
|
theme = "agnoster";
|
|
};
|
|
};
|
|
} |