Vimrc: Vala/Cpp linewidths.

This commit is contained in:
Kolan Sh 2014-04-28 11:44:46 +04:00
parent 1d3f01a1e5
commit f2db42bed4
1 changed files with 7 additions and 0 deletions

7
.vimrc
View File

@ -7,6 +7,7 @@ set tabstop=4
set shiftwidth=4 set shiftwidth=4
set textwidth=79 set textwidth=79
set tw=79 set tw=79
set colorcolumn=80,120,160
set expandtab set expandtab
set autoindent set autoindent
set copyindent set copyindent
@ -31,6 +32,9 @@ function! CppIndent()
setlocal shiftwidth=4 setlocal shiftwidth=4
setlocal tabstop=4 setlocal tabstop=4
setlocal noexpandtab setlocal noexpandtab
set textwidth=119
set tw=119
set colorcolumn=120,160
endfunction endfunction
" Setup for the Sh coding format standard " Setup for the Sh coding format standard
@ -45,6 +49,9 @@ function! ValaIndent()
setlocal shiftwidth=4 setlocal shiftwidth=4
setlocal tabstop=4 setlocal tabstop=4
setlocal noexpandtab setlocal noexpandtab
set textwidth=119
set tw=119
set colorcolumn=120,160
endfunction endfunction
au FileType c call GnuIndent() au FileType c call GnuIndent()