YAML syntax/indent plugin for Vim.
By this plugin introducing, you can write as the indent style shown below:
---
# The block sequences with the block mappings in the same line:
- name: create file
command: >
creates=/path/to/file
touch /path/to/file
# Not exists spaces after the block sequences symbol:
-
name: install packages
apt: name={{item}} state=present
with_items:
- package1
- package2
---
# The block scalar headers on the top domain:
>
A value of the block scalar.
And added the syntax highlighting listed below:
- The block scalar headers:
>
and|
- Not exists spaces after the block sequences symbol:
-
All you have to do is to write the loading settings of this plugin to the .vimrc
.
NeoBundle 'mrk21/yaml-vim'