diff options
author | June McEnroe <programble@gmail.com> | 2012-01-30 15:18:50 -0500 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2012-01-30 15:18:50 -0500 |
commit | cd095a6f04d015c9e3167640a53a6c5bfe073df7 (patch) | |
tree | 9ab13cfe928829ae29fb9c7c5b9e342b4145d947 | |
parent | Don't show Syntastic errors automatically (diff) | |
download | src-cd095a6f04d015c9e3167640a53a6c5bfe073df7.tar.gz src-cd095a6f04d015c9e3167640a53a6c5bfe073df7.zip |
Set shiftwidth to 4 for Lua
Diffstat (limited to '')
-rw-r--r-- | .vimrc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.vimrc b/.vimrc index 78557059..911242b2 100644 --- a/.vimrc +++ b/.vimrc @@ -64,6 +64,7 @@ filetype plugin indent on " Indentation exceptions autocmd FileType c setlocal sw=4 autocmd FileType cpp setlocal sw=4 +autocmd FileType lua setlocal sw=4 " Better tab-complete when opening set wildmenu |