You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

113 lines
3.0 KiB
Bash

# Path to your oh-my-zsh configuration.
ZSH=$HOME/.oh-my-zsh
ZSH_THEME="webgefrickel"
# default plugins to load
plugins=(brew git git-flow github history-substring-search jake-node npm node gem osx zsh-syntax-highlighting)
source $ZSH/oh-my-zsh.sh
unsetopt correct_all
11 years ago
# Terminal
export TERM="screen-256color"
# brew CASK
# export HOMEBREW_CASK_OPTS="--appdir=/Applications"
# paths
export PATH=/usr/local/bin:/usr/local/sbin:$HOME/.rvm/bin:$PATH
export MANPATH=/usr/local/share/man:$MANPATH
# disable stupid ._ and dsstore files
export COPY_EXTENDED_ATTRIBUTES_DISABLE=true
export COPYFILE_DISABLE=true
# editor
export EDITOR=vim
export VISUAL=vim
# node.js
export NODE_PATH=/usr/local/lib/jsctags/:$NODE_PATH
# disable auto titling fixes tmux window
export DISABLE_AUTO_TITLE=true
# z script installed via homebrew
. `brew --prefix`/etc/profile.d/z.sh
### aliases ##
# aliases for apache and mysql
alias apachestart='_ /usr/sbin/apachectl start'
alias apachestop='_ /usr/sbin/apachectl stop'
alias mysqlstart='mysql.server start'
alias mysqlstop='mysql.server stop'
alias dev='apachestart && mysqlstart'
alias devs='apachestop && mysqlstop'
12 years ago
alias devr='devs && dev'
# random usefull stuff
alias dnsflush='_ dscacheutil -flushcache'
alias cleanup="find . -type f -name '*.DS_Store' -ls -delete"
# all in one homebrew, gem update commands
alias brewup='brew update && brew upgrade && brew cleanup && brew linkapps'
alias gemup='gem update --system && gem update && gem cleanup'
alias npmup='npm -g cache clean && npm -g update'
alias rvmup='rvm get latest'
alias upall='brewup && rvmup && gemup && npmup'
# always use mvim but for 'vim'
alias v='vim'
alias vd='vimdiff'
alias diff='vimdiff'
# easy hosts / apache / php editing
alias hosts='_ vim /etc/hosts'
alias vhosts='_ vim /etc/apache2/extra/httpd-vhosts.conf'
alias phpini='vim /usr/local/etc/php/5.4/php.ini'
# Easier navigation: .., ..., ~ and -
alias ..='cd ..'
alias ...='cd ../..'
alias ....='cd ../../..'
alias .....='cd ../../../..'
alias l='ls -al'
alias e='exit'
# Shortcuts
alias drop='cd ~/Dropbox && ls -al'
alias web='cd ~/Sites && ls -al'
alias rep='cd ~/Repositories && ls -al'
alias dot='cd ~/Dotfiles && ls -al'
12 years ago
alias brain='cd ~/Dropbox/Brain && vim .'
alias jake='noglob jake'
# some function for finding stuff
function fname() { find . -iname "*$@*"; }
function grepkill() { ps -axf | grep -v grep | grep "$@" | awk '{print $2}' | xargs kill }
# Gitty gitgit
alias gitrm='git rm $(git ls-files --deleted)'
alias gsmu='git submodule init && git submodule update'
12 years ago
# THIS is evil. only use for private stuff and useless stuff
# squish those commits afterwards with rebase!
12 years ago
alias ggg='git add . && git commit -a -m "-"'
# dandelion deployment shortcuts
alias deploy='dandelion deploy'
alias status='dandelion status'
# grunt
alias gr='grunt'
alias grw='grunt watch'
alias grd='grunt deploy'
# other tools
11 years ago
alias t='tmux -u -2'
12 years ago
alias ta='tmux attach'
# rvm ftw!
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"