mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-11 13:03:50 -05:00
15 lines
221 B
VimL
15 lines
221 B
VimL
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'ocaml') == -1
|
|
|
|
if exists("b:did_ftplugin")
|
|
finish
|
|
endif
|
|
let b:did_ftplugin=1
|
|
|
|
set lisp
|
|
|
|
" Comment string
|
|
setl commentstring=;\ %s
|
|
setl comments=:;
|
|
|
|
endif
|