summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2012-08-21 22:39:19 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2012-08-21 22:39:19 -0400
commitbc4a3914db8b294238df438750863214bdb83f4d (patch)
tree18d1023524b22ea2eee292a8ba603cece46d9768
parentae33398b4eefc8fd729c201c984126960d579afc (diff)
parent69e7a06e976bbad54684b8c650853020c8352adb (diff)
Merge branch 'master' into hp-dv6426us-par
Conflicts: .emacs.d/custom.el
-rw-r--r--.bashrc7
-rw-r--r--.crontab2
-rw-r--r--.emacs.d/custom.el1
-rw-r--r--.git.info.exclude11
-rw-r--r--.irbrc1
-rw-r--r--.profile11
6 files changed, 20 insertions, 13 deletions
diff --git a/.bashrc b/.bashrc
index 119e071..ff11c5b 100644
--- a/.bashrc
+++ b/.bashrc
@@ -23,6 +23,13 @@ shopt -s histappend
# update the values of LINES and COLUMNS.
shopt -s checkwinsize
+# Let ** recursively scan directories
+shopt -s globstar
+
+# Why is this not on by default?
+# "We have a cached value, but it isn't valid anymore. Should we trash it?"
+shopt -s checkhash
+
# make less more friendly for non-text input files, see lesspipe(1)
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
diff --git a/.crontab b/.crontab
index c2d8351..ca405cf 100644
--- a/.crontab
+++ b/.crontab
@@ -1,3 +1,3 @@
# m h dom mon dow command
-*/5 * * * * cd $HOME && make -
+*/5 * * * * cd $HOME && make
*/5 * * * * offlineimap-runner 2 -u quiet
diff --git a/.emacs.d/custom.el b/.emacs.d/custom.el
index fad97a8..ee82309 100644
--- a/.emacs.d/custom.el
+++ b/.emacs.d/custom.el
@@ -8,6 +8,7 @@
'(erc-nick "lukeshu")
'(explicit-shell-file-name "/bin/bash")
'(inhibit-startup-screen t)
+ '(mdmua-maildir "~/Maildir")
'(ruby-deep-arglist nil)
'(ruby-deep-indent-paren nil)
'(scroll-bar-mode nil))
diff --git a/.git.info.exclude b/.git.info.exclude
index 048e924..4576b6f 100644
--- a/.git.info.exclude
+++ b/.git.info.exclude
@@ -54,6 +54,7 @@ history.*
.current.asound
.dbus/session-bus/*
.ddd/history
+.ddd/sessions
.dvdcss
.esd_auth
.eshell/history
@@ -87,15 +88,17 @@ history.*
.config/libretools/blacklist.txt
# Ignore these files for no good reason
-.terminfo
-.config/vlc/vlc-qt-interface.conf
-.wine*
-.offlineimap
.bogofilter
.config/Trolltech.conf
+.config/vlc/vlc-qt-interface.conf
.gem
+.offlineimap
+.prefix
+.terminfo
+.wine*
# Ignore these files that if I tracked them, would be a separate repo
+.config/chromium
.config/libreoffice
.config/transmission
.eclipse
diff --git a/.irbrc b/.irbrc
new file mode 100644
index 0000000..7596d96
--- /dev/null
+++ b/.irbrc
@@ -0,0 +1 @@
+require 'rubygems' unless defined? Gem # only needed in 1.8
diff --git a/.profile b/.profile
index d37e858..f394fbd 100644
--- a/.profile
+++ b/.profile
@@ -25,13 +25,6 @@ done
# Settings ###########################################################
-# TMPDIR
-if [ -d "$HOME/tmp" ]; then
- export TMPDIR="$HOME/tmp"
-elif [ -d "$HOME/.prefix/tmp" ]; then
- export TMPDIR="$HOME/.prefix/tmp"
-fi
-
# Text editor
if [ -f "$HOME/.selected_editor" ]; then
. "$HOME/.selected_editor"
@@ -58,7 +51,9 @@ if [ -x "`which alsactl 2>/dev/null`" ]; then
fi
# X11
-export XAUTHORITY=$HOME/.Xauthority
+if [ -z "$XAUTHORITY" ]; then
+ export XAUTHORITY=$HOME/.Xauthority
+fi
# D-Bus
if [ -z "$DBUS_SESSION_BUS_ADDRESS" ]; then