bashrc: Remove references to `sensible-editor'.
[profile] / setup
diff --git a/setup b/setup
index 6d1ef51..1ebf7f1 100755 (executable)
--- a/setup
+++ b/setup
@@ -127,12 +127,23 @@ for system in $systems; do
 done
 echo "  all done."
 
+### Install global configuration
+echo -n "Installing dotfile configuration:"
+if [ -f $HOME$sub/.mdw.conf ]; then
+  echo " already installed."
+else
+  cp mdw.conf $HOME$sub/.mdw.conf
+  echo " done."
+fi
+
 ### Symlink the various dotfiles into place
 dotfiles=" 
   bash_profile bash_logout bashrc
   emacs emacs-calc 
   vm mailrc
-  cmucl-init.lisp clisprc.lisp sbclrc
+  lisp-init.lisp:.cmucl-init.lisp
+    lisp-init.lisp:.sbclrc
+    lisp-init.lisp:.clisprc.lisp
   dircolors screenrc cvsrc"
 [ "$xstuff" ] && dotfiles="$dotfiles
   xinitrc xsession Xdefaults
@@ -160,6 +171,7 @@ echo "Installing Emacs packages..."
 for elib in make-regexp; do
   $echon "  $elib:$echoc"
   if $false emacs >/dev/null 2>&1 --batch --eval '
+       (setq load-path (nconc load-path (list "~/lib/emacs")))
        (kill-emacs (condition-case nil
                       (progn (load-library "make-regexp") 0)
                     (error 1)))'; then