Skip to content

Commit e508ae3

Browse files
committed
Updates for VimClojure 2.3.4 snapshot
1 parent d3b8e9a commit e508ae3

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,4 @@ test-out/
5151
.rakeTasks
5252
.secret*
5353
.vim/bundle/vimclojure
54+
vimclojure-*

.vimrc

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -172,16 +172,14 @@ au FileType python setl softtabstop=4 tabstop=4 shiftwidth=4
172172
au FileType go setl noexpandtab softtabstop=0 tabstop=4 shiftwidth=4 nosmarttab
173173

174174
" Clojure
175-
let vimclojure#NailgunClient = "/usr/local/bin/ng"
176175
let g:paredit_mode = 1
177176
let g:clj_highlight_builtins = 1
178177
let g:clj_highlight_contrib = 1
179178
let g:clj_paren_rainbow = 1
180179
let clj_paren_rainbow = 1
181-
let clj_highlight_builtins = 1
182-
let clj_highlight_contrib = 1
183180
let vimclojure#ParenRainbow = 1
184-
let vimclojure#WantNailgun = 1
181+
let vimclojure#WantNailgun = 0
182+
let vimclojure#HighlightBuiltins = 1
185183
let vimclojure#NailgunClient = "/usr/local/bin/ng"
186184
au BufRead,BufNewFile {*.clj,*.cljs} setl ft=clojure sw=2 ts=2
187185

.zshrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ export SCALA_HOME=/opt/scala
4545
export JREBEL_HOME=/opt/jrebel
4646
export CABAL_HOME=/Users/oc/.cabal
4747

48+
# Clojure
49+
alias ng-lein='echo "Be sure to set :dev-dependencies [[vimclojure/server \"2.3.3\"]] "; java -cp "`lein classpath`" vimclojure.nailgun.NGServer 127.0.0.1'
50+
4851
# Autotest
4952
export AUTOFEATURE=true
5053

boot.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@ brew install $(cat brews | xargs)
22

33
git submodule update --init
44

5-
hg clone https://bitbucket.org/kotarak/vimclojure .vim/
5+
VIMCLJ="vimclojure-$(date +%Y%m%d)"
6+
hg clone https://bitbucket.org/kotarak/vimclojure $VIMCLJ
7+
cp -r $VIMCLJ/vim/ .vim/bundle/vimclojure
68

7-
rsync --exclude .git --exclude my.cnf --exclude boot.sh -avz . /Users/oc/
9+
rsync --exclude .git --exclude my.cnf --exclude boot.sh --exclude vimclojure-* -avz . /Users/oc/
810

911
echo "REMEMBER: sudo cp my.cnf /etc/my.cnf"

0 commit comments

Comments
 (0)