X-Git-Url: https://git.distorted.org.uk/~mdw/profile/blobdiff_plain/400223a1ae71e4df036ca2734c01f8214a070c8a..ad43d821e540097cfa9a76fcd6e21b45593998c4:/setup diff --git a/setup b/setup index b9adf91..2be9065 100755 --- a/setup +++ b/setup @@ -68,7 +68,7 @@ fi echo "Installing useful scripts..." scripts=" - lesspipe.sh start-ssh-agent svnwrap" + lesspipe.sh start-ssh-agent svnwrap movemail-hack" [ "$xstuff" ] && scripts="$scripts xrun" for script in $scripts; do @@ -145,14 +145,17 @@ dotfiles=" bash_profile bash_logout bashrc inputrc emacs emacs-calc vm mailrc signature + gitconfig lisp-init.lisp:.cmucl-init.lisp lisp-init.lisp:.sbclrc lisp-init.lisp:.clisprc.lisp - dircolors screenrc cvsrc" + lisp-init.lisp:.eclrc + dircolors screenrc cvsrc indent.pro" [ "$xstuff" ] && dotfiles="$dotfiles - xinitrc xsession Xdefaults + xinitrc xsession Xdefaults vncrc vncsession eterm-theme.cfg:.Eterm/themes/Eterm/theme.cfg e-keybindings.cfg:.enlightenment/keybindings.cfg + evnc-keybindings.cfg:.enlightenment-vnc/keybindings.cfg jue-peek.jpg:.enlightenment/backgrounds/jue-peek.jpg" mkdir -p $HOME/test echo "Installing dotfiles..." @@ -194,18 +197,19 @@ emacspkg=" for elib in $emacspkg; do $echon " $elib:$echoc" if $false $emacs >/dev/null 2>&1 --no-site-file --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 + (progn + (setq load-path (nconc load-path (list "~/lib/emacs"))) + (kill-emacs (condition-case nil + (progn (load-library "'"$elib"'") 0) + (error 1))))'; then echo " already installed." else $echon " downloading$echoc" - $GETURL $HOME$sub/lib/emacs/make-regexp.el $REPO/make-regexp.el + $GETURL $HOME$sub/lib/emacs/$elib.el $REPO/$elib.el $echon " compiling$echoc" (cd $HOME$sub/lib/emacs; $emacs >/dev/null 2>&1 --no-site-file --batch \ - --eval '(byte-compile-file "make-regexp.el")') + --eval '(byte-compile-file "'"$elib.el"'")') echo " done." fi done