Update zsh config to be more minimal

- config is more centrilize in zshrc
- it doesn't depend on oh-my-zsh
This commit is contained in:
Alexander Navarro 2024-02-20 13:18:05 -03:00
parent 3b99ffe395
commit 5dcbc3a0b2
8 changed files with 123 additions and 180 deletions

View file

@ -1,2 +1,19 @@
alias \
glf='git log -p --'
glf='git log -p --' \
gs='git status' \
ga='git add' \
gp='git push' \
gpo='git push origin' \
gtd='git tag --delete' \
gtdr='git tag --delete origin' \
gr='git branch -r' \
gplo='git pull origin' \
gb='git branch ' \
gc='git commit' \
gd='git diff' \
gco='git checkout ' \
gl='git log' \
gr='git remote' \
grs='git remote show' \
glo='git log --pretty="oneline"' \
glol='git log --graph --oneline --decorate'