2024-02-27 11:52:31 -05:00

25 lines
442 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"
];
};
};
starship = {
enable = true;
enableZshIntegration = true;
};
};
}