28 lines
610 B
Nix
28 lines
610 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.zsh = {
|
|
enable = true;
|
|
dotDir = ".config/zsh";
|
|
autosuggestion.enable = true;
|
|
syntaxHighlighting.enable = true;
|
|
historySubstringSearch.enable = true;
|
|
oh-my-zsh = {
|
|
enable = true;
|
|
theme = "agnoster";
|
|
plugins = [
|
|
"git"
|
|
"history"
|
|
];
|
|
};
|
|
history = {
|
|
append = true;
|
|
ignoreAllDups = true;
|
|
ignoreSpace = true;
|
|
path = "$ZDOTDIR/.zsh_history";
|
|
};
|
|
initExtra = ''
|
|
pfetch
|
|
source ${pkgs.zsh-you-should-use}/share/zsh/plugins/you-should-use/you-should-use.plugin.zsh
|
|
'';
|
|
};
|
|
}
|