30 lines
533 B
Nix
30 lines
533 B
Nix
{ pkgs, config, ... }:
|
|
|
|
{
|
|
programs = {
|
|
zsh = {
|
|
enable = true;
|
|
oh-my-zsh = {
|
|
enable = false;
|
|
};
|
|
antidote = {
|
|
enable = true;
|
|
plugins = [
|
|
"zsh-users/zsh-syntax-highlighting"
|
|
"zsh-users/zsh-autosuggestions"
|
|
"zsh-users/zsh-history-substring-search"
|
|
];
|
|
};
|
|
shellAliases = {
|
|
cd = "z";
|
|
cdi = "zi";
|
|
cat = "bat";
|
|
};
|
|
};
|
|
starship = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
};
|
|
};
|
|
}
|