-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetupclj.sh
More file actions
executable file
·25 lines (20 loc) · 898 Bytes
/
setupclj.sh
File metadata and controls
executable file
·25 lines (20 loc) · 898 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# add tpope's pathogen path helper to Vim for easing plugin install/management.
mkdir -p ~/.vim/autoload ~/.vim/bundle; \
curl -Sso ~/.vim/autoload/pathogen.vim \
https://raw.github.com/tpope/vim-pathogen/master/autoload/pathogen.vim
echo 'execute pathogen#infect()' >> ~/.vimrc
# enter the Vim plugin directory for use by the next 2 sections
cd ~/.vim/bundle
# add s-expression helper plugins to Vim
git clone https://github.com/guns/vim-sexp.git
git clone https://github.com/tpope/vim-sexp-mappings-for-regular-people.git
# add tpope's clojure helper Vim plugins
git clone git://github.com/tpope/vim-fireplace.git
git clone git://github.com/tpope/vim-classpath.git
git clone git://github.com/guns/vim-clojure-static.git
# setup leiningen, "without setting your hair on fire"
mkdir -p ~/bin
cd ~/bin
wget https://raw.github.com/technomancy/leiningen/stable/bin/lein
chmod a+x lein
./lein