Bram Moolenaar | 7e6a515 | 2021-01-02 16:39:53 +0100 | [diff] [blame] | 1 | " Vim indent file |
2 | " Language: dune | ||||
3 | " Maintainers: Markus Mottl <markus.mottl@gmail.com> | ||||
4 | " URL: https://github.com/ocaml/vim-ocaml | ||||
5 | " Last Change: 2021 Jan 01 | ||||
6 | |||||
7 | if exists("b:did_indent") | ||||
8 | finish | ||||
9 | endif | ||||
10 | let b:did_indent = 1 | ||||
11 | |||||
12 | " dune format-dune-file uses 1 space to indent | ||||
13 | setlocal softtabstop=1 shiftwidth=1 expandtab |