Add better yaml syntax, closes #99

This commit is contained in:
Adam Stankiewicz
2015-12-31 18:34:53 +01:00
parent 13fe6ad758
commit f8a0fb37bf
4 changed files with 77 additions and 0 deletions

11
after/ftplugin/yaml.vim Normal file
View File

@@ -0,0 +1,11 @@
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'yaml') == -1
" Vim indent file
" Language: Yaml
" Author: Henrique Barcelos
" Date: 2014-10-08
" URL: https://github.com/hjpbarcelos
setlocal autoindent sw=2 ts=2 expandtab
" vim:set sw=2:
endif