From d383205ac60fdcf39bf2b0f813d63f91cf6e9dd5 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sat, 2 Jul 2011 15:04:50 -0400 Subject: A bunch of different, small things * .bash_aliases: fix hardcoded location of dircolors * .bashrc: move daemon-starting to... * .profile: * .wl: set up SMTP, increase folder-window-width * .crontab: run make every 5 min. * .emacs: o load php-mode-improved, mmm-mode, dtrt-indent, folding o set default theme to color-theme-ttyp-dark (override for X11) o (setq default indent-tabs-mode t) o set up flymake for PHP * .git.info.exclude: ignore .bogofilter/* * .maildirproc/default.rc: tweak filters --- .bash_aliases | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.bash_aliases') diff --git a/.bash_aliases b/.bash_aliases index f6138c0..7ad559b 100644 --- a/.bash_aliases +++ b/.bash_aliases @@ -5,7 +5,7 @@ ###################################################################### # Set up colors and settings for ls/dir/vdir # ###################################################################### -if [ -x /usr/bin/dircolors ]; then +if [ -x "`which dircolors`" ]; then eval "`dircolors -b`" alias ls='ls -1v --color=auto' alias dir='dir -v --color=auto' -- cgit v1.2.3-54-g00ecf