aboutsummaryrefslogtreecommitdiffstats
path: root/ftplugin/ocaml.vim
blob: dc6974fb1f0d7cdc6ecf5c73dc75276bece2907c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
" 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>