summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.Xdefaults4
-rw-r--r--.bashrc1
-rw-r--r--.emacs2
-rw-r--r--.profile6
4 files changed, 12 insertions, 1 deletions
diff --git a/.Xdefaults b/.Xdefaults
index 5d3c85b..ceabc5c 100644
--- a/.Xdefaults
+++ b/.Xdefaults
@@ -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
diff --git a/.bashrc b/.bashrc
index 2c5b611..e6a949e 100644
--- a/.bashrc
+++ b/.bashrc
@@ -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*
diff --git a/.emacs b/.emacs
index 09c80f8..805b4c3 100644
--- a/.emacs
+++ b/.emacs
@@ -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)
diff --git a/.profile b/.profile
index bc03469..0bb55ca 100644
--- a/.profile
+++ b/.profile
@@ -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