2005-04-24 19:05:04 +02:00
|
|
|
" LLVM coding guidelines conformance for VIM
|
2009-01-02 17:26:14 +01:00
|
|
|
"
|
|
|
|
" Maintainer: The LLVM Team, http://llvm.org
|
2005-04-24 19:05:04 +02:00
|
|
|
" WARNING: Read before you source in all these commands and macros! Some
|
2005-05-12 23:41:48 +02:00
|
|
|
" of them may change VIM behavior that you depend on.
|
2009-01-02 17:26:14 +01:00
|
|
|
"
|
|
|
|
" You can run VIM with these settings without changing your current setup with:
|
|
|
|
" $ vim -u /path/to/llvm/utils/vim/vimrc
|
|
|
|
|
|
|
|
" It's VIM, not VI
|
|
|
|
set nocompatible
|
2005-04-24 19:05:04 +02:00
|
|
|
|
|
|
|
" Wrap text at 80 cols
|
|
|
|
set textwidth=80
|
|
|
|
|
|
|
|
" A tab produces a 2-space indentation
|
|
|
|
set tabstop=2
|
|
|
|
set shiftwidth=2
|
|
|
|
set expandtab
|
|
|
|
|
2009-01-02 17:26:14 +01:00
|
|
|
" Highlight trailing whitespace
|
|
|
|
highlight WhitespaceEOL ctermbg=DarkYellow guibg=DarkYellow
|
|
|
|
match WhitespaceEOL /\s\+$/
|
|
|
|
|
2005-05-12 23:41:48 +02:00
|
|
|
" Optional
|
|
|
|
" C/C++ programming helpers
|
2009-01-04 01:03:54 +01:00
|
|
|
set cindent
|
|
|
|
" Don't indent switch case labels beyond the switch.
|
|
|
|
set cinoptions=:0
|
2005-05-12 23:41:48 +02:00
|
|
|
" Add and delete spaces in increments of `shiftwidth' for tabs
|
|
|
|
set smarttab
|
|
|
|
|
2009-01-02 17:26:14 +01:00
|
|
|
" Highlight syntax in programming languages
|
|
|
|
syntax on
|
|
|
|
|
2005-04-24 19:05:04 +02:00
|
|
|
" 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
|
2009-01-02 17:26:14 +01:00
|
|
|
au! BufRead,BufNewFile *Makefile* set filetype=make
|
2005-04-24 19:05:04 +02:00
|
|
|
augroup END
|
|
|
|
|
|
|
|
" In Makefiles, don't expand tabs to spaces, since we need the actual tabs
|
|
|
|
autocmd FileType make set noexpandtab
|
|
|
|
|
|
|
|
" Useful macros for cleaning up code to conform to LLVM coding guidelines
|
|
|
|
|
|
|
|
" Delete trailing whitespace and tabs at the end of each line
|
2009-01-02 17:26:14 +01:00
|
|
|
command! DeleteTrailingWs :%s/[\ \t]\+$//
|
2005-04-24 19:05:04 +02:00
|
|
|
|
|
|
|
" Convert all tab characters to two spaces
|
2009-01-02 17:26:14 +01:00
|
|
|
command! Untab :%s/\t/ /g
|