-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc
40 lines (31 loc) · 977 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
36
37
38
39
40
" Vundle setup
set nocompatible
filetype off
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim'
" plugins
Plugin 'tpope/vim-fugitive'
"Plugin 'SirVer/ultisnips.git'
"Plugin 'honza/vim-snippets.git'
Plugin 'nvie/vim-flake8'
Plugin 'bling/vim-airline'
Plugin 'nvie/vim-pyunit'
Plugin 'xolox/vim-misc'
Plugin 'xolox/vim-notes'
"Plugin 'Valloric/YouCompleteMe'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
syntax enable
" Vundle setup complete
" http://mikegrouchy.com/blog/2012/05/compile-vim-with-python-support-on-osx-with-homebrew.html
set backspace=indent,eol,start
" terminal colors
set t_Co=256
" vim-notes
:let g:notes_directories = ['~/notes',]
" learn vimscript the hard way
" http://learnvimscriptthehardway.stevelosh.com/chapters/01.html