diff options
-rw-r--r-- | .Xdefaults | 4 | ||||
-rw-r--r-- | .bashrc | 1 | ||||
-rw-r--r-- | .emacs | 2 | ||||
-rw-r--r-- | .profile | 6 |
4 files changed, 12 insertions, 1 deletions
@@ -12,3 +12,7 @@ URxvt.pastableTabs: true URxvt.scrollTtyOutput: false URxvt.scrollTtyKeypress: false URxvt.scrollWithBuffer: true + +URxvt.perl-ext-common: default,matcher +URxvt.urlLauncher: v-www-browser +URxvt.matcher.button: 1 @@ -99,3 +99,4 @@ fi if [ -f "$HOME/.login-daemons" ]; then . "$HOME/.login-daemons" fi +[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function* @@ -36,7 +36,7 @@ :after (lambda () (color-theme-tty-dark))) (:name color-theme-solarized - :url "https://LukeShu@github.com/LukeShu/emacs-color-theme-solarized.git" + :url "git://github.com/LukeShu/emacs-color-theme-solarized.git" :after (lambda () (add-hook 'after-make-frame-functions (lambda (frame) @@ -16,6 +16,12 @@ for dir in $bins; do fi done +for dir in $HOME/.prefix/lib; do + if [ -d "$dir" ]; then + export RUBYLIB="$dir" + fi +done + if [ -d "$HOME/tmp" ]; then export TMPDIR="$HOME/tmp" elif [ -d "$HOME/.prefix/tmp"]; then |