2012-02-16 16:25:18 +02:00
|
|
|
PRELUDE_INSTALL_DIR="$HOME/.emacs.d"
|
2012-04-17 20:23:53 +03:00
|
|
|
PRELUDE_URL=https://github.com/bbatsov/prelude.git
|
2012-02-16 16:25:18 +02:00
|
|
|
|
2012-05-11 22:44:43 +03:00
|
|
|
if [ -d $PRELUDE_INSTALL_DIR/prelude ]
|
2012-05-11 13:36:57 +03:00
|
|
|
then
|
2012-05-11 22:45:20 +03:00
|
|
|
printf "\e[33m You already have Prelude installed.\e[0m You'll need to remove $PRELUDE_INSTALL_DIR/prelude if you want to install Prelude again.\n"
|
2012-05-11 13:36:57 +03:00
|
|
|
exit 1;
|
|
|
|
fi
|
|
|
|
|
|
|
|
printf "Checking to see if git is installed... "
|
|
|
|
hash git 2>&- || { printf >&2 "\e[33mnot found. Aborting installation!\e[0m"; exit 1; }
|
|
|
|
printf "\e[32mfound.\e[0m\n"
|
2012-05-07 17:38:16 +03:00
|
|
|
|
2012-05-11 13:36:57 +03:00
|
|
|
printf "Checking to see if aspell is installed... "
|
|
|
|
hash aspell 2>&- || { printf >&2 "\e[33mnot found. Install aspell to benefit from flyspell-mode!\e[0m"; }
|
|
|
|
printf "\e[32mfound.\e[0m\n"
|
2012-05-07 17:38:16 +03:00
|
|
|
|
2012-05-11 13:36:57 +03:00
|
|
|
printf "Checking to see if ack is installed... "
|
|
|
|
hash ack 2>&- || { printf >&2 "\e[33mnot found. You'll need it to use ack-and-a-half!\e[0m"; }
|
|
|
|
printf "\e[32mfound.\e[0m\n"
|
2012-02-17 12:34:08 +02:00
|
|
|
|
2012-05-11 13:36:57 +03:00
|
|
|
printf "Looking for an existing Emacs config... "
|
2012-04-05 11:07:20 +03:00
|
|
|
if [ -d $PRELUDE_INSTALL_DIR ]
|
2012-02-16 16:25:18 +02:00
|
|
|
then
|
2012-05-11 13:36:57 +03:00
|
|
|
printf "\e[33mfound an existing $PRELUDE_INSTALL_DIR.\e[0m Backing it up to $PRELUDE_INSTALL_DIR.pre-prelude.\n"
|
|
|
|
mv $PRELUDE_INSTALL_DIR $PRELUDE_INSTALL_DIR.pre-prelude
|
|
|
|
elif [ -f ~/.emacs ]
|
2012-02-16 16:25:18 +02:00
|
|
|
then
|
2012-05-11 13:36:57 +03:00
|
|
|
printf "\e[33mfound an existing ~/.emacs.\e[0m Backing it up to ~/.emacs.pre-prelude.\n"
|
|
|
|
mv ~/.emacs ~/.emacs.pre-prelude
|
|
|
|
else
|
|
|
|
printf "\e[32mnot found.\e[0m\n"
|
2012-02-16 16:25:18 +02:00
|
|
|
fi
|
|
|
|
|
2012-05-11 13:36:57 +03:00
|
|
|
printf "Cloning Emacs Prelude from GitHub... "
|
|
|
|
/usr/bin/env git clone $PRELUDE_URL $PRELUDE_INSTALL_DIR > /dev/null 2>&1
|
2012-04-04 18:32:47 +03:00
|
|
|
cd $PRELUDE_INSTALL_DIR
|
2012-05-11 16:06:40 +03:00
|
|
|
printf "done.\n"
|
|
|
|
|
|
|
|
if which emacs 2>&1 > /dev/null
|
|
|
|
then
|
|
|
|
printf "Byte compiling Prelude... "
|
|
|
|
emacs -batch -f batch-byte-compile $PRELUDE_INSTALL_DIR/prelude/*.el
|
|
|
|
printf "done.\n\n"
|
|
|
|
fi
|
2012-02-16 16:25:18 +02:00
|
|
|
|
2012-05-11 13:36:57 +03:00
|
|
|
printf "\e[34m ____ _ _ \n"
|
|
|
|
printf "\e[34m| _ \ _ __ ___| |_ _ __| | ___ \n"
|
|
|
|
printf "\e[34m| |_) | __/ _ \ | | | |/ _ |/ _ \ \n"
|
|
|
|
printf "\e[34m| __/| | | __/ | |_| | (_| | __/ \n"
|
|
|
|
printf "\e[34m|_| |_| \___|_|\__,_|\__,_|\___| \n"
|
2012-02-16 16:25:18 +02:00
|
|
|
|
2012-05-11 13:36:57 +03:00
|
|
|
printf "\e[32m... is now installed and ready to do thy bidding, Master $USER!\n"
|
|
|
|
printf "\e[0m"
|