From 089e701b47886098e6daf8c148ffce71385a8ea1 Mon Sep 17 00:00:00 2001 From: gryf Date: Wed, 26 Apr 2017 09:17:23 +0200 Subject: [PATCH] Added basic editor settings for YAML files --- ftplugin/yaml/common.vim | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 ftplugin/yaml/common.vim diff --git a/ftplugin/yaml/common.vim b/ftplugin/yaml/common.vim new file mode 100644 index 0000000..d6a1455 --- /dev/null +++ b/ftplugin/yaml/common.vim @@ -0,0 +1,5 @@ +" Set indents compatible to yaml specification +setlocal softtabstop=2 +setlocal tabstop=2 +setlocal shiftwidth=2 +setlocal expandtab