diff options
author | Patrick Simianer <pks@pks.rocks> | 2018-10-19 16:49:09 +0200 |
---|---|---|
committer | Patrick Simianer <pks@pks.rocks> | 2018-10-19 16:49:09 +0200 |
commit | 99861145a29e36bf97136e4fb9626dde45274444 (patch) | |
tree | 613c946a1068c4554ce261ad70c2b3660aff2d7a /zsh | |
parent | 4dde62d213d17076bb80f123cb964a37fcf18407 (diff) | |
parent | d03551cbf8c96e0f28a32a348eff337ff7bd7c83 (diff) |
merge w/ barkley's version
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/.zshrc | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -37,6 +37,11 @@ if [[ -d ~/nlp_scripts ]]; then export PATH=~/nlp_scripts:$PATH fi +which R &>/dev/null +if [[ $? == 0 ]]; then + export R_LIBS_USER=$HOME/.R +fi + export EDITOR='vim -p' export LC_ALL=en_US.UTF-8 @@ -102,7 +107,7 @@ in_google_cloud () { # possible colors: black, white, green, cyan, red, yellow, magenta case `hostname` in - bogues*|curry*|iverson*|jordan*|ming*|nowitzki*|oneal*|robinson*) + bryant|barkley|bogues*|curry*|durant*|iverson*|jordan*|ming*|nowitzki*|oneal*|robinson*) HOSTCOLOR_BG=magenta HOSTCOLOR_FG=black ;; @@ -168,7 +173,7 @@ case `hostname` in umask u=rwx,g=rwx,o=rx alias tmux="tmux -f ~/.tmux.`hostname`.conf" ;; - bogues|curry|iverson|nowitzki|oneal|ming|*.uberspace.de) + bryant|barkley|bogues|curry|durant|iverson|nowitzki|oneal|ming|*.uberspace.de) PATH=/usr/lib/colorgcc/bin:$PATH ;; esac |