From 9c7b0cd446d1942bee45ce08344f9787fa73dfbb Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Tue, 31 Jul 2018 15:11:51 +0000 Subject: [PATCH] [vim] use 2 spaces instead of 4 for toml intendation --- home/.vim/ftdetect/filetypes.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/.vim/ftdetect/filetypes.vim b/home/.vim/ftdetect/filetypes.vim index 2712126..ad35951 100644 --- a/home/.vim/ftdetect/filetypes.vim +++ b/home/.vim/ftdetect/filetypes.vim @@ -27,7 +27,7 @@ autocmd Filetype sh setlocal ts=4 sw=4 sts=4 expandtab autocmd Filetype zsh setlocal ts=4 sw=4 sts=4 expandtab autocmd Filetype svg setlocal ts=2 sw=2 sts=2 expandtab autocmd Filetype tex setlocal ts=1 sw=1 sts=1 expandtab -autocmd Filetype toml setlocal ts=4 sw=4 sts=4 expandtab +autocmd Filetype toml setlocal ts=2 sw=2 sts=2 expandtab autocmd Filetype vue setlocal ts=2 sw=2 sts=2 expandtab autocmd Filetype xml setlocal ts=2 sw=2 sts=2 expandtab autocmd Filetype yaml setlocal ts=2 sw=2 sts=2 expandtab