dot/vimrc: Turn on mode-sensitive indentation, and tweak indent levels.
[profile] / dot / vimrc
1 set incsearch
2 set showcmd
3 set autoindent
4
5 set softtabstop=2
6 set shiftwidth=2
7
8 if &t_Co > 2 || has("gui_running")
9 syntax on
10 set guifont=MiscFixed6x13\ 12
11 hi Normal guifg=white guibg=black
12 set background=dark
13 endif
14
15 if has("autocmd") filetype plugin indent on endif