Jordan Bancino
d1507c7cdf
I have the entire Alpine Linux repository mirrored. I might as well use the fancy vi implementation. Syntax highlighting is kinda nice.
15 lines
296 B
VimL
15 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
|
|
|