mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
Only set cindent for C and C++ source files.
llvm-svn: 62717
This commit is contained in:
parent
58a51ca0f9
commit
e9724624b7
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user