summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2014-06-23 21:36:50 +0200
committerPatrick Simianer <p@simianer.de>2014-06-23 21:36:50 +0200
commit0c2f89551532d6151de5d7f7dc25b82766116098 (patch)
tree76ac16ee188b91d4a1bf7f8311ba3f1b0593de1d
parent034ababc345ae7fdc967b320f2dc47b9338344ad (diff)
fix
-rw-r--r--.tmux.vicious.conf2
-rw-r--r--.zshrc30
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
diff --git a/.zshrc b/.zshrc
index 575192c..d38ef41 100644
--- a/.zshrc
+++ b/.zshrc
@@ -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