mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-23 17:41:32 +08:00
21 lines
458 B
VimL
21 lines
458 B
VimL
""
|
|
" @section lang#ocaml, layer-lang-ocaml
|
|
" @parentsection layers
|
|
" OCaml autocompletion provided by merlin.
|
|
"
|
|
" Requirements:
|
|
" >
|
|
" opam
|
|
" merlin
|
|
" <
|
|
|
|
function! SpaceVim#layers#lang#ocaml#plugins() abort
|
|
let plugins = []
|
|
call add(plugins, ['ocaml/merlin', {'on_ft' : 'ocaml', 'rtp' : 'vim/merlin'}])
|
|
return plugins
|
|
endfunction
|
|
|
|
function! SpaceVim#layers#lang#ocaml#config() abort
|
|
let g:syntastic_ocaml_checkers = ['merlin']
|
|
endfunction
|