29 lines
457 B
VimL
29 lines
457 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 compatible " Be compatible with vi.
|
|
|
|
set fileformat=unix
|
|
set encoding=UTF-8
|
|
|
|
set syntax=on
|
|
set colorcolumn=72,80,100
|
|
|
|
set autoread
|
|
set spell
|
|
|
|
set ignorecase
|
|
set smartcase
|
|
|
|
set showcmd
|
|
set showmode
|