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;
|
2024-02-12 06:57:13 +00:00
|
|
|
history = {
|
|
|
|
extended = true;
|
|
|
|
ignoreDups = true;
|
|
|
|
ignoreSpace = true;
|
|
|
|
};
|
2024-02-11 06:53:37 +00:00
|
|
|
oh-my-zsh = {
|
|
|
|
enable = true;
|
|
|
|
plugins = ["colored-man-pages" "lol" "rand-quote"];
|
|
|
|
theme = "";
|
|
|
|
};
|
2024-02-12 06:57:13 +00:00
|
|
|
completionInit = ''
|
|
|
|
autoload -Uz +X compinit && compinit
|
|
|
|
|
|
|
|
## case insensitive path-completion
|
|
|
|
zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}'
|
|
|
|
zstyle ':completion:*' menu select
|
|
|
|
'';
|
2024-02-12 07:10:20 +00:00
|
|
|
initExtra = "source ${./transient.zsh}\n";
|
2024-02-11 06:53:37 +00:00
|
|
|
};
|
|
|
|
}
|