diff options
author | June McEnroe <june@causal.agency> | 2012-08-11 13:55:20 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2012-08-11 13:55:20 -0400 |
commit | bdf8a45229f515606d3a53f4216259b3447bf918 (patch) | |
tree | ff7a8714f9133dadf2e799a79c41014df9d5207c | |
parent | Remove vim-space (diff) | |
download | src-bdf8a45229f515606d3a53f4216259b3447bf918.tar.gz src-bdf8a45229f515606d3a53f4216259b3447bf918.zip |
Condense indentation exceptions
-rw-r--r-- | .vimrc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.vimrc b/.vimrc index 26ff7266..f5734333 100644 --- a/.vimrc +++ b/.vimrc @@ -63,9 +63,7 @@ set shiftround filetype plugin indent on " Indentation exceptions -autocmd FileType c setlocal sw=4 -autocmd FileType cpp setlocal sw=4 -autocmd FileType lua setlocal sw=4 +autocmd FileType c,cpp,lua setlocal sw=4 autocmd FileType markdown setlocal tw=72 " C/C++ indent options |