Ansible Playbooks Indentation
Indentation is very important. Here is a simple .vimrc file that can help indent for you
syntax on
filetype indent plugin on
set modeline
set paste
filetype plugin indent on
" On pressing tab, insert 2 spaces
set expandtab
" show existing tab with 2 spaces width
set tabstop=2
set softtabstop=2
" when indenting with '>', use 2 spaces width
set shiftwidth=2
autocmd FileType yaml setlocal ai ts=2 sw=2 et colorcolumn=1,3,5,7,9,11,13 nu