summaryrefslogtreecommitdiffstats
path: root/ftplugin/oasis.vim
blob: 0b2150d5c32ef5dc5540a13de054358749841e7e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
let files = filter(globpath(&rtp, 'ftplugin/oasis.vim', 1, 1), { _, v -> v !~ "vim-polyglot" && v !~ $VIMRUNTIME && v !~ "after" })
if len(files) > 0
  exec 'source ' . files[0]
  finish
endif
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'ocaml') == -1


setlocal comments=:#
setlocal commentstring=#\ %s

endif