diff options
author | Cody Hiar <codyfh@gmail.com> | 2016-11-21 17:25:06 -0700 |
---|---|---|
committer | Cody Hiar <codyfh@gmail.com> | 2016-11-21 17:25:06 -0700 |
commit | ab4e4c2523c7cd0f1201d29909b8c91472feb802 (patch) | |
tree | 7220c0cdf7c54270610ada5633673581be9420a7 | |
parent | 3dda6bbacbbf8239b2dfaef80b64b88eb9d22614 (diff) |
html should be set to 2
-rw-r--r-- | plugin/vim-options.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugin/vim-options.vim b/plugin/vim-options.vim index 34b3877..0664238 100644 --- a/plugin/vim-options.vim +++ b/plugin/vim-options.vim @@ -69,6 +69,7 @@ nnoremap <C-]> <C-w><C-]> " FileType Options "----------------------------------------------------------------------------------------------------------------------- au FileType xml setlocal equalprg=xmllint\ --format\ --recover\ -\ 2>/dev/null " File ident on xml files +autocmd FileType html set tabstop=2|set shiftwidth=2 autocmd FileType python set tabstop=4|set shiftwidth=4 autocmd FileType php set tabstop=4|set shiftwidth=4 autocmd FileType sh set tabstop=4|set shiftwidth=4 |