-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimrc
More file actions
27 lines (19 loc) · 728 Bytes
/
vimrc
File metadata and controls
27 lines (19 loc) · 728 Bytes
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
" =========================================================
" This .vimrc file is tailored for my personal use, as it should be.
" It is the top level file that sources all other configuations
" and settings.
" =========================================================
" All of the plugins are installed with Vundle from this file.
source ~/.vim/vundle.vim
" Automatically detect file types -- (must be turned on after Vundle)
filetype plugin indent on
" All of the vim configuation.
source ~/.vim/config.vim
" Plugin specific configuation
source ~/.vim/plugins.vim
" Key Mappings
source ~/.vim/mappings.vim
" Load all the auto commands
source ~/.vim/autocmds.vim
" Load all custom functions
source ~/.vim/functions.vim