-
Notifications
You must be signed in to change notification settings - Fork 8
/
vimrc
35 lines (28 loc) · 865 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
29
30
31
32
33
34
35
"
" Configure vim to suck less
"
let softab = "on"
let tabsize = 4
let arrowkeys = "off" " Enable this if you like to use the arrow keys to move. I highly discourage you.
let gui_font = "Monaco:h12"
let mapleader = ","
source ~/.vimrc-defaults
" Feel free to edit the files below (helpers functions, autocommands and key shortcuts)
source ~/.vimrc-helpers
source ~/.vimrc-au
source ~/.vimrc-keymaps
colorscheme molokai
" Default bundles
Bundle 'scrooloose/nerdtree'
Bundle 'scrooloose/nerdcommenter'
Bundle 'msanders/snipmate.vim'
Bundle 'godlygeek/tabular'
Bundle 'ervandew/supertab'
Bundle 'Raimondi/delimitMate.git'
let delimitMate_visual_leader = ","
Bundle 'tpope/vim-fugitive'
set statusline+=%{fugitive#statusline()}
Bundle 'scrooloose/syntastic'
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*