This commit is contained in:
Adam Stankiewicz
2016-07-26 13:43:53 +02:00
parent 11f34624aa
commit 6a823fb3af
5 changed files with 24 additions and 9 deletions

View File

@@ -17,6 +17,9 @@ if exists("b:current_syntax")
finish
endif
let s:cpo_sav = &cpo
set cpo&vim
if has("folding") && exists("g:clojure_fold") && g:clojure_fold > 0
setlocal foldmethod=syntax
endif
@@ -216,6 +219,9 @@ highlight default link clojureParen Delimiter
let b:current_syntax = "clojure"
let &cpo = s:cpo_sav
unlet! s:cpo_sav
" vim:sts=8:sw=8:ts=8:noet
endif