~hipl-core/hipl/shotgun_mobility2

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
" indentation rules for HIPL: 4 spaces, no tabs
set expandtab
set shiftwidth=4
set softtabstop=4
set cindent
set cinoptions=(0

autocmd FileType make,automake set noexpandtab shiftwidth=8 softtabstop=8

" Trailing whitespace and tabs are forbidden, so highlight them.
highlight ForbiddenWhitespace ctermbg=red guibg=red
match ForbiddenWhitespace /\s\+$\|\t/
" Do not highlight spaces at the end of line while typing on that line.
autocmd InsertEnter * match ForbiddenWhitespace /\t\|\s\+\%#\@<!$/

if filereadable(".vimrc_custom")
    source .vimrc_custom
endif