[ -f /usr/local/etc/bash_completion ] && . /usr/local/etc/bash_completion
alias done="git add . && git commit && git push"
alias nuke="rm -rf node_modules && npm i && npm audit fix"
alias clean="git branch --merged | grep -v \* | xargs git branch -D"

function switch() {
    git fetch -pP
    git checkout $1
}

echo "Power Overwhelming..."