Vimrc: Vala/Cpp linewidths.
This commit is contained in:
parent
1d3f01a1e5
commit
f2db42bed4
7
.vimrc
7
.vimrc
|
@ -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()
|
||||||
|
|
Loading…
Reference in New Issue