45 lines
597 B
VimL
Executable File
45 lines
597 B
VimL
Executable File
" Don't write .viminfo
|
|
set viminfofile=NONE
|
|
|
|
" Don't try to be vi compatible
|
|
set nocompatible
|
|
|
|
" Turn on syntax highlighting
|
|
syntax on
|
|
|
|
" Show line numbers
|
|
" set number
|
|
|
|
" Show file stats
|
|
set ruler
|
|
|
|
" Blink cursor on error instead of beeping (grr)
|
|
set visualbell
|
|
|
|
" Encoding
|
|
set encoding=utf-8
|
|
|
|
" Whitespace
|
|
set wrap
|
|
set textwidth=79
|
|
set formatoptions=tcqrn1
|
|
set tabstop=2
|
|
set shiftwidth=2
|
|
set softtabstop=2
|
|
set expandtab
|
|
set noshiftround
|
|
|
|
" Cursor motion
|
|
set scrolloff=3
|
|
set backspace=indent,eol,start
|
|
|
|
" Rendering
|
|
set ttyfast
|
|
|
|
" Status bar
|
|
set laststatus=2
|
|
|
|
" Last line
|
|
set showmode
|
|
set showcmd
|