summaryrefslogtreecommitdiff
path: root/.bashrc
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2011-05-12 22:49:47 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2011-05-12 22:49:47 -0400
commitf67a03ec2a3a266add0060ea74bfbc203f4f7b7f (patch)
tree1d7ea82855e0428cdbb0c1f6a0041dd8ac9dce4b /.bashrc
parentc9935112c8b66e23d2acd7584fecd8e99a281b14 (diff)
Play with emacs daemon mode
* .bashrc: include .bash.d/* * .bash.d/emacs.sh: adjust emacsclient flags in SELECTED_EDITOR, EDITOR, and VISUAL based on $DISPLAY and $TERM * .emacs: set the font size in a way that plays nice with daemon-mode
Diffstat (limited to '.bashrc')
-rw-r--r--.bashrc7
1 files changed, 7 insertions, 0 deletions
diff --git a/.bashrc b/.bashrc
index 133ff9f..9609bc2 100644
--- a/.bashrc
+++ b/.bashrc
@@ -73,6 +73,13 @@ xterm*|rxvt*)
;;
esac
+# Include modular config files
+if [ -d ~/.bash.d ]; then
+ for file in ~/.bash.d/*.sh; do
+ . $file;
+ done
+fi
+
# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.