14 lines
286 B
Nix
14 lines
286 B
Nix
{
|
|
programs.zsh = {
|
|
enable = true;
|
|
autocd = true;
|
|
history = {
|
|
path = "$HOME/.local/share/zsh/history";
|
|
expireDuplicatesFirst = true;
|
|
};
|
|
historySubstringSearch.enable = true;
|
|
autosuggestion.enable = true;
|
|
syntaxHighlighting.enable = true;
|
|
};
|
|
}
|