alias show-hidden-files='defaults write com.apple.finder AppleShowAllFiles TRUE' alias hide-hidden-files='defaults write com.apple.finder AppleShowAllFiles FALSE'
alias subl='/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl' alias st='/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl'
alias cp='cp -i' alias desktop='cd ~/Desktop' alias home='cd' alias mv='mv -i' alias rm='rm -i' alias grep='grep --color' alias l='ls -l -G' alias lla='ls -d .*' alias ll='ls -l -G' alias ls='ls -G' alias sizeof='du -hs'
alias sass='sass --unix-newlines --style expanded --watch' alias scss='scss --unix-newlines --style expanded --watch'
alias webstorm='/Applications/WebStorm.app/Contents/MacOS/webstorm'
alias .='cd ..' alias ..='cd ../..' alias ...='cd ../../..' alias ....='cd ../../../..' alias .....='cd ../../../../..' alias desk="cd /Users/davidmatheson/desktop"
alias server='python -m SimpleHTTPServer'
template() { git clone [email protected]:mathesond2/project-template.git && mv 'project-template' "$@" && cd $_ && rm -rf .git } templateskeleton() { git clone [email protected]:mathesond2/project-template-skeleton.git && mv 'project-template-skeleton' "$@" && cd $_ && rm -rf .git } templatesimple() { git clone [email protected]:mathesond2/simple-template.git && mv 'simple-template' "$@" && cd $_ && rm -rf .git }
alias template=template alias templateskeleton=templateskeleton alias templatesimple=templatesimple
alias gst='git status' alias grv='git remote -v' alias gpu='git push upstream' alias gm='git merge' alias gp='git push' alias gf='git fetch' alias gcm='git checkout master' alias gcmsg='git commit -m' alias gd='git diff' alias gdca='git diff --cached' alias grh='git reset HEAD' alias grhh='git reset HEAD --hard' alias gco='git checkout' alias gcb='git checkout -b' alias ga='git add' alias gaa='git add --all' alias gb='git branch'