aboutsummaryrefslogtreecommitdiffstats
path: root/ftplugin/ocaml.vim
blob: 8b91aade15e689ffe9a1c25a163a20a2194319a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
" OCaml vim settings

" Indentation
setlocal expandtab
setlocal tabstop=2
setlocal softtabstop=2
setlocal shiftwidth=2


nnoremap <buffer> Zr
	\ :execute '!eval $(opam env) && dune exec ' . fnameescape(expand('%:p:h:h:t'))<CR>
nnoremap <buffer> Zb :!eval $(opam env) && dune build<CR>
nnoremap <buffer> <leader>z :!eval $(opam env) && dune test<CR>
nnoremap <buffer> Zp :!eval $(opam env) && dune promote<CR>