Only set cindent for C and C++ source files.
authorDan Gohman <gohman@apple.com>
Wed, 21 Jan 2009 21:30:25 +0000 (21:30 +0000)
committerDan Gohman <gohman@apple.com>
Wed, 21 Jan 2009 21:30:25 +0000 (21:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62717 91177308-0d34-0410-b5e6-96231b3b80d8

utils/vim/vimrc

index 43038399ea8d09cfc74b1ed12a2c9ae82c82ccf5..1b2de0f7f2c914784f199c69ba61bbd9688551cb 100644 (file)
@@ -22,9 +22,16 @@ set expandtab
 highlight WhitespaceEOL ctermbg=DarkYellow guibg=DarkYellow
 match WhitespaceEOL /\s\+$/
 
+" Enable filetype detection
+filetype on
+
 " Optional
 " C/C++ programming helpers
-set cindent
+augroup csrc
+  au!
+  autocmd FileType *      set nocindent smartindent
+  autocmd FileType c,cpp  set cindent
+augroup END
 " Set a few indentation parameters. See the VIM help for cinoptions-values for
 " details.  These aren't absolute rules; they're just an approximation of
 " common style in LLVM source.
@@ -35,9 +42,6 @@ set smarttab
 " Highlight syntax in programming languages
 syntax on
 
-" Enable filetype detection
-filetype on
-
 " LLVM Makefiles can have names such as Makefile.rules or TEST.nightly.Makefile,
 " so it's important to categorize them as such.
 augroup filetype