feat(zsh): idiomatically organise .zprofile .zshenv and .zshrc

This commit is contained in:
2026-03-09 12:08:23 +01:00
parent 7829980f8f
commit d92857428e
5 changed files with 26 additions and 21 deletions

View File

@@ -10,11 +10,11 @@ alias dp="docker ps --format 'table {{.Names}}\t{{.Ports}}'"
alias dcp="docker compose ps --format 'table {{.Name}}\t{{.Ports}}'"
# navigation
alias cdgit="cd $GGROOT"
alias cdgit='cd $GGROOT'
# git
alias gpo="git push origin"
alias gros="git reset origin/$(git_current_branch) --soft"
gros() { git reset "origin/$(git_current_branch)" --soft }
alias gcan="git commit -v --amend --no-edit"
alias glogaa="git log --oneline --graph --all --pretty=format:\"%C(auto)%h %C(blue)(%aL/%cL)%C(auto)%(decorate) %s%Creset\""