diff options
-rw-r--r-- | .tmux.vicious.conf | 2 | ||||
-rw-r--r-- | .zshrc | 30 |
2 files changed, 12 insertions, 20 deletions
diff --git a/.tmux.vicious.conf b/.tmux.vicious.conf index 44e613a..1b80767 100644 --- a/.tmux.vicious.conf +++ b/.tmux.vicious.conf @@ -21,7 +21,7 @@ set -g status-fg white set -g status-bg colour234 set -g window-status-activity-attr bold set -g pane-border-fg colour245 -set -g pane-active-border-fg blue +set -g pane-active-border-fg yellow set -g message-fg colour16 set -g message-bg colour221 set -g message-attr bold @@ -68,35 +68,24 @@ esac autoload -U colors && colors case `hostname` in - coltrane*) - HOSTCOLOR=blue - alias tmux='TERM=screen-256color tmux -f ~/.tmux.coltrane.conf' - export GEM_HOME=/toolbox/ruby/ - export GEM_PATH=$HOME/lib/ruby + 2pac*) + HOSTCOLOR=green + alias tmux='TERM=screen-256color tmux -f ~/.tmux.2pac.conf' ;; CLuster) HOSTCOLOR=cyan alias tmux='TERM=screen-256color tmux -f ~/.tmux.cluster.conf' - export GEM_HOME=/toolbox/ruby/ - export GEM_PATH=$HOME/lib/ruby + ;; + coltrane*) + HOSTCOLOR=blue + alias tmux='TERM=screen-256color tmux -f ~/.tmux.coltrane.conf' ;; donna*) HOSTCOLOR=red alias tmux='TERM=screen-256color tmux -f ~/.tmux.donna.conf' - export GEM_HOME=/toolbox/ruby/ - export GEM_PATH=$HOME/lib/ruby ;; vicious*) HOSTCOLOR=yellow - alias tmux='TERM=screen-256color tmux -f ~/.tmux.vicious.conf' - export GEM_HOME=/toolbox/ruby/ - export GEM_PATH=$HOME/lib/ruby - ;; - 2pac*) - HOSTCOLOR=green - alias tmux='TERM=screen-256color tmux -f ~/.tmux.vicious.conf' - export GEM_HOME=$HOME/lib/ruby/ - export GEM_PATH=/toolbox/ruby ;; x) HOSTCOLOR=magenta @@ -108,12 +97,15 @@ esac case `hostname` in 2pac*|CLuster|coltrane*|donna*|vicious*) + export GEM_HOME=/toolbox/ruby/ + export GEM_PATH=/toolbox/ruby export PYTHONPATH=$PYTHONPATH:/toolbox/python/lib/python2.7/site-packages export PATH=~/vim/bin:/toolbox/scripts:/opt/java/bin/:/toolbox/ruby/bin/:$PATH export JAVA_HOME=/usr/lib/jvm/java-6-sun/ # debian systems + alias tmux='TERM=screen-256color tmux -f ~/.tmux.vicious.conf' PROMPT="[%m:%~]%{$fg[$HOSTCOLOR]%}%B%%%b%{$reset_color%} " ;; - *) + x) PROMPT="[%~]%{$fg[magenta]%}$B%%%b%{$reset_color%} " ;; esac |