2021-05-18 15:02:12 +00:00
|
|
|
alias -- -='$EDITOR $(fzf)'
|
2013-11-24 17:52:33 +00:00
|
|
|
alias ...='cd ../..'
|
2021-05-13 16:25:21 +00:00
|
|
|
alias ..='cd ..'
|
2021-03-23 16:09:57 +00:00
|
|
|
alias O="cd ~ && mbsync -a && mu index"
|
2021-05-13 16:25:21 +00:00
|
|
|
alias brewup='brew update && brew upgrade && brew cu -a -f -y && brew cleanup'
|
2013-11-24 17:52:33 +00:00
|
|
|
alias g="git"
|
2021-12-02 17:12:47 +00:00
|
|
|
alias gd="git diff"
|
2014-09-19 16:08:36 +00:00
|
|
|
alias gf="git-flow"
|
2013-11-24 17:52:33 +00:00
|
|
|
alias ggpl='git pull origin $(current_branch)'
|
|
|
|
alias ggpnp='git pull origin $(current_branch) && git push origin $(current_branch)'
|
2021-05-13 16:25:21 +00:00
|
|
|
alias ggps='git push origin $(current_branch)'
|
2013-11-24 17:52:33 +00:00
|
|
|
alias gmo='$EDITOR $(git ls-files -m)'
|
2021-05-13 16:25:21 +00:00
|
|
|
alias gs="git status"
|
2021-04-12 14:32:01 +00:00
|
|
|
alias lg='lazygit'
|
2021-05-13 16:25:21 +00:00
|
|
|
alias m='neomutt'
|
|
|
|
alias mutt='neomutt'
|
|
|
|
alias nb="npm run build"
|
|
|
|
alias npmre='rm -f package-lock.json && rm -rf node_modules && npm install'
|
|
|
|
alias ns="npm start"
|
|
|
|
alias q='exit'
|
|
|
|
alias sudo='sudo '
|
2013-07-19 17:17:05 +00:00
|
|
|
alias t='tmux -u -2'
|
2016-12-30 13:49:41 +00:00
|
|
|
alias ta='tmux -u attach'
|
2020-05-03 17:45:33 +00:00
|
|
|
alias upall='brewup && npm-check -gu'
|
2021-05-13 16:25:21 +00:00
|
|
|
alias v=$EDITOR
|
|
|
|
alias vd='$EDITOR -d'
|
|
|
|
alias vdiff='$EDITOR -d'
|
|
|
|
alias vi=$EDITOR
|
|
|
|
alias vim=$EDITOR
|
|
|
|
alias vimdiff='$EDITOR -d'
|
2021-12-14 18:07:59 +00:00
|
|
|
alias vimup='brew uninstall neovim && brew install neovim --HEAD && nvim +PackerSync +TSUpdate'
|
2021-05-13 16:25:21 +00:00
|
|
|
alias yp='yarn lint && yarn production'
|
|
|
|
alias yre='rm -f yarn.lock && rm -rf node_modules && yarn'
|
2021-05-18 15:02:12 +00:00
|
|
|
alias ys='yarn start'
|