13 lines
235 B
Nix
13 lines
235 B
Nix
|
{ ... }: {
|
||
|
programs = {
|
||
|
zsh = {
|
||
|
enable = true;
|
||
|
enableAutosuggestions = true;
|
||
|
enableCompletion = true;
|
||
|
enableSyntaxHighlighting = true;
|
||
|
enableVteIntegration = true;
|
||
|
autocd = true;
|
||
|
};
|
||
|
};
|
||
|
}
|