Vim: CPP indent
This commit is contained in:
parent
90fc0366e5
commit
dd675d0aae
11
.vimrc
11
.vimrc
|
@ -26,12 +26,21 @@ function! GnuIndent()
|
|||
setlocal tabstop=8
|
||||
endfunction
|
||||
|
||||
" Setup for the CPP coding format standard
|
||||
function! CppIndent()
|
||||
setlocal shiftwidth=8
|
||||
setlocal tabstop=8
|
||||
setlocal noexpandtab
|
||||
endfunction
|
||||
|
||||
|
||||
" Setup for the Vala coding format standard
|
||||
function! ValaIndent()
|
||||
setlocal shiftwidth=4
|
||||
endfunction
|
||||
|
||||
au FileType c,cpp call GnuIndent()
|
||||
au FileType c call GnuIndent()
|
||||
au FileType cpp call CppIndent()
|
||||
au FileType vala,vapi call ValaIndent()
|
||||
|
||||
" отключение бэкапов
|
||||
|
|
Loading…
Reference in New Issue