nix-config/home/modules/cli/zsh.nix
lightly-toasted bd984e7aaf feat(zsh): update aliases
- Removed update alias
- Added some git aliases
2025-10-02 22:52:47 +09:00

15 lines
307 B
Nix

{ pkgs, ... }: {
programs.zsh = {
enable = true;
enableCompletion = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
shellAliases = {
gs = "git status";
gl = "git log --oneline --graph --decorate --all";
ga = "git add --all";
};
};
}