16 lines
296 B
VimL
16 lines
296 B
VimL
|
" Supported by almost all vi implementations.
|
||
|
set autoindent
|
||
|
set number
|
||
|
set ruler
|
||
|
set tabstop=4
|
||
|
set shiftwidth=4
|
||
|
set expandtab
|
||
|
set showmatch
|
||
|
set exrc
|
||
|
|
||
|
" Supported only by vim. If running a non-vim vi, remove all comments
|
||
|
" and everything below this line.
|
||
|
set syntax=on
|
||
|
set colorcolumn=72,80,100
|
||
|
|