|
|
- #!/bin/sh
- alias \
- q='exit' \
- ls="ls --color=auto" \
- ll="ls -G -alh" \
- dd='sudo dd status=progress' \
- h="history 1 | grep" \
- vim='nvim' \
- grep='grep --color=auto' \
- p='sudo pacman' \
- extip='curl -s www.icanhazip.com' \
- gitup='git push origin $(git rev-parse --abbrev-ref HEAD)' \
- gco='git checkout' \
- gbls='git --no-pager branch -a' \
- vv='nvim ~/.config/nvim/init.vim' \
- vz='nvim ~/.zshrc && source ~/.zshrc' \
- va='nvim ~/.config/aliasrc && source ~/.zshrc' \
- sz='source ~/.zshrc' \
- delorig='find . -name "*.orig" -exec rm {} \;' \
- delbak='find . -name "*.bak" -exec rm {} \;' \
- cpp="rsync --progress --recursive" \
- sv="sudo nvim" \
- c="xclip -selection clipboard" \
- v="xclip -selection clipboard -o" \
- lf="lfcd"
|