-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvimrc
27 lines (23 loc) · 895 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
" =============================================================================
" Who: Matt Kelsey (@kelsmj)
" Description: My version of Vim Configuration of Champions by Jeremy Mack (@mutewinter)
" Version: 1.0
" =============================================================================
" 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
" New commands
source ~/.vim/commands.vim
" All hotkeys, not dependant on plugins, are mapped here.
source ~/.vim/mappings.vim
" Load plugin-specific configuration.
source ~/.vim/plugins.vim
" Small custom functions.
source ~/.vim/functions.vim
" Auto commands.
source ~/.vim/autocmds.vim