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