Correct indentation
This commit is contained in:
parent
1e15836a0f
commit
70ce25c6f8
2 changed files with 13 additions and 13 deletions
|
@ -3,13 +3,13 @@ export ZSH=/usr/share/oh-my-zsh/
|
||||||
|
|
||||||
# Plugins
|
# Plugins
|
||||||
plugins=(
|
plugins=(
|
||||||
django
|
django
|
||||||
pip
|
pip
|
||||||
pyenv
|
pyenv
|
||||||
python
|
python
|
||||||
common-aliases
|
common-aliases
|
||||||
extract
|
extract
|
||||||
heroku
|
heroku
|
||||||
)
|
)
|
||||||
|
|
||||||
export COMPLETION_WAITING_DOTS="true"
|
export COMPLETION_WAITING_DOTS="true"
|
||||||
|
|
|
@ -26,12 +26,12 @@ gh() {
|
||||||
}
|
}
|
||||||
|
|
||||||
git-cleanup() {
|
git-cleanup() {
|
||||||
command git checkout master
|
command git checkout master
|
||||||
command git branch --merged | grep -v '*' | xargs -n 1 git branch -D
|
command git branch --merged | grep -v '*' | xargs -n 1 git branch -D
|
||||||
command git branch -vv | awk '/: gone]/{print $1}' | xargs git branch -D
|
command git branch -vv | awk '/: gone]/{print $1}' | xargs git branch -D
|
||||||
command git remote prune origin
|
command git remote prune origin
|
||||||
command git gc --aggressive
|
command git gc --aggressive
|
||||||
command git checkout -
|
command git checkout -
|
||||||
}
|
}
|
||||||
|
|
||||||
alias t="tig"
|
alias t="tig"
|
||||||
|
|
Loading…
Reference in a new issue