forked from Casecommons/vim-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vimrc
31 lines (24 loc) · 772 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
" ----------
" Vim Config
" ----------
"
"
" How this works:
"
" This file is minimal. Most of the vim settings and initialization is in
" several files in .vim/init. This makes it easier to find things and to
" merge between branches and repos.
"
" Please do not add configuration to this file, unless it *really* needs to
" come first or last, like Pathogen and sourcing the machine-local config.
" Instead, add it to one of the files in .vim/init, or create a new one.
" Pathogen (This must happen first.)
" --------
call pathogen#infect()
filetype plugin indent on
" Source initialization files
" ---------------------------
runtime! init/**.vim
" Machine-local vim settings - keep this at the end
" --------------------------
silent! source ~/.vimrc.local