diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2015-04-21 22:15:18 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2015-04-21 22:15:18 +0200 |
commit | 3d047d999a2cf54c17b1f90d90f0c478a308e2d8 (patch) | |
tree | c63963697787ba4ce711e809fc5be825533fabf3 /vim/vimrc | |
parent | 3442c598457176b1518ebd193748e2ffd5787faf (diff) | |
download | dotfiles-3d047d999a2cf54c17b1f90d90f0c478a308e2d8.tar.xz |
vim: put yaml settings in augroup
Diffstat (limited to 'vim/vimrc')
-rw-r--r-- | vim/vimrc | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -109,7 +109,10 @@ augroup filetypes autocmd BufRead,BufNewFile *.h set filetype=c augroup END -autocmd FileType yaml setlocal ts=2 sts=2 sw=2 noet +augroup indentation + autocmd! + autocmd FileType yaml setlocal ts=2 sts=2 sw=2 noet +augroup END " Use clang_check for syntax checking let g:syntastic_c_checkers = ['clang_check'] |