forked from pivotalcommon/vim-config
-
Notifications
You must be signed in to change notification settings - Fork 1
/
vimrc
37 lines (28 loc) · 1006 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
" ----------
" 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.)
" --------
filetype off " Avoid a Vim/Pathogen bug
call pathogen#helptags()
call pathogen#runtime_append_all_bundles()
set nocompatible " Don't maintain compatibility with vi
syntax on " Highlight known syntaxes
filetype plugin indent on
" Source initialization files
" ---------------------------
runtime! init/**.vim
" Machine-local vim settings - keep this at the end
" --------------------------
silent! source ~/.vimrc.local