e149692cc9
subrepo: subdir: "dotfiles/.vim/plugged/ale" merged: "e4b205440" upstream: origin: "https://github.com/dense-analysis/ale.git" branch: "master" commit: "e4b205440" git-subrepo: version: "0.4.3" origin: "???" commit: "???"
13 lines
483 B
VimL
13 lines
483 B
VimL
" Author: Risto Stevcev <me@risto.codes>
|
|
" Description: The official language server for OCaml
|
|
|
|
call ale#Set('ocaml_ocamllsp_use_opam', 1)
|
|
|
|
call ale#linter#Define('ocaml', {
|
|
\ 'name': 'ocamllsp',
|
|
\ 'lsp': 'stdio',
|
|
\ 'executable': function('ale#handlers#ocamllsp#GetExecutable'),
|
|
\ 'command': function('ale#handlers#ocamllsp#GetCommand'),
|
|
\ 'language': function('ale#handlers#ocamllsp#GetLanguage'),
|
|
\ 'project_root': function('ale#handlers#ocamllsp#GetProjectRoot'),
|
|
\})
|