forked from mutewinter/dot_vim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc
24 lines (21 loc) · 757 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
" ===========================================
" Who: Jeremy Mack (@mutewinter)
" What: .vimrc of champions
" Version: 2.0 - Now individual config files!
" ===========================================
" All of the plugins are installed with Vundle from this file.
source ~/.vim/vundle.vim
" Automatically detect file types. (must turn on after Vundle)
filetype plugin indent on
" Platform (Windows, Mac, etc.) configuration.
source ~/.vim/platforms.vim
" All of the Vim configuration.
source ~/.vim/config.vim
" All hotkeys, not depedant on plugins, are bound here.
source ~/.vim/bindings.vim
" Plugin-specific configuration.
source ~/.vim/plugin_config.vim
" Small custom functions.
source ~/.vim/functions.vim
" Auto commands.
source ~/.vim/autocmds.vim