Merge branch 'master' of github.com:lloeki/dotfiles

This commit is contained in:
Loic Nageleisen 2011-09-28 16:26:15 +02:00
commit 4badcf432e
2 changed files with 11 additions and 0 deletions

View file

@ -20,6 +20,9 @@ export NODE_PATH
# Ruby Gems # Ruby Gems
test -d /var/lib/gems/1.8/bin && PATH="$PATH:/var/lib/gems/1.8/bin" RUBYOPT="-rubygems" test -d /var/lib/gems/1.8/bin && PATH="$PATH:/var/lib/gems/1.8/bin" RUBYOPT="-rubygems"
export PATH RUBYOPT export PATH RUBYOPT
# Gems on OSX homebrew
test -d /usr/local/Cellar/ruby/1.9.2-p290/bin && PATH="/usr/local/Cellar/ruby/1.9.2-p290/bin:$PATH"
export PATH
# default editor # default editor
EDITOR=vim EDITOR=vim

8
zshrc
View file

@ -19,6 +19,14 @@ chpwd() {
# NOOP # NOOP
;; ;;
esac esac
case $TERM in
xterm*)
print -Pn "\e]0;%n@%m: %~\a"
;;
*)
# NOOP
;;
esac
} }
chpwd # call in right now chpwd # call in right now