Files
vim-polyglot/ftplugin/dune.vim
Adam Stankiewicz 6b540d7db0 Update
2020-03-02 00:34:02 +01:00

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