diff options
author | Teddy Wing | 2023-07-07 21:21:48 +0200 |
---|---|---|
committer | Teddy Wing | 2023-07-18 00:52:23 +0200 |
commit | 8068d6893bea5cbb69526b7a6cc751b3ea61f4de (patch) | |
tree | 8251290ca3415590af083ec73d81cc41853123dc /ftplugin/ocaml.vim | |
parent | 731b2f38194939799bca8e488cfb4fb1026c13cd (diff) | |
download | dotvim-8068d6893bea5cbb69526b7a6cc751b3ea61f4de.tar.bz2 |
ftplugin/ocaml.vim: Add indentation settings
All the OCaml code I've read so far uses two-space indentation.
Diffstat (limited to 'ftplugin/ocaml.vim')
-rw-r--r-- | ftplugin/ocaml.vim | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ftplugin/ocaml.vim b/ftplugin/ocaml.vim new file mode 100644 index 0000000..b1f3f59 --- /dev/null +++ b/ftplugin/ocaml.vim @@ -0,0 +1,7 @@ +" OCaml vim settings + +" Indentation +setlocal expandtab +setlocal tabstop=2 +setlocal softtabstop=2 +setlocal shiftwidth=2 |