19 lines
335 B
Nix
19 lines
335 B
Nix
{
|
|
programs.zsh = {
|
|
enable = true;
|
|
enableCompletion = true;
|
|
enableVteIntegration = true;
|
|
autocd = true;
|
|
autosuggestion = {
|
|
enable = true;
|
|
};
|
|
syntaxHighlighting = {
|
|
enable = true;
|
|
};
|
|
envExtra = ''
|
|
# Add asdf shims to PATH
|
|
export PATH="$HOME/.asdf/shims:$PATH"
|
|
'';
|
|
};
|
|
}
|