forked from matthewmccullough/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc
28 lines (21 loc) · 721 Bytes
/
vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
" ########################################################################
" # VI text editor setup
" ########################################################################
execute pathogen#infect()
" set our tabs to four spaces
set ts=4
" turn syntax highlighting on by default
syntax enable
set background=dark
colorscheme solarized
filetype plugin indent on
" set auto-indenting on for programming
set ai
" turn off compatibility with the old vi
set nocompatible
" turn on the "visual bell" - which is much quieter than the "audio blink"
set vb
" automatically show matching brackets. works like it does in bbedit.
set showmatch
" make that backspace key work the way it should
set backspace=indent,eol,start