| 1234567891011121314151617181920212223242526272829303132333435 |
- """"""""""""""""""""""""""""""""""""""""""""""""
- " Anton Lindstrom's .vimrc
- " http://code.antonlindstrom.com/.vimrc
- """"""""""""""""""""""""""""""""""""""""""""""""
-
- " Getting rid of vi bugs and turns syntax highlighting on
- set nocompatible
- syntax on
- " History
- set history=1000
- " Indent
- set autoindent
- set smartindent
- set tabstop=2
- set shiftwidth=2
- set shiftround
- set expandtab
- set nowrap
- set preserveindent
- set pastetoggle=<F12> "Press <F12> when paste-alot
- " VIM UI
- filetype on
- set showmatch
- set ruler
- set incsearch
- set backspace=2
- set whichwrap+=<,>,[,],h,l
- set shortmess=atI
- set showmode
- set showcmd
- filetype plugin indent on
|