-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathvimrc
More file actions
22 lines (18 loc) · 710 Bytes
/
vimrc
File metadata and controls
22 lines (18 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
" Use Vim settings, rather then Vi settings (much better!).
" This must be first, because it changes other options as a side effect.
set nocompatible
" Use pathogen (http://www.vim.org/scripts/script.php?script_id=2332) for
" easier bundle management
call pathogen#infect()
source $HOME/.vim/basics.vim
source $HOME/.vim/bindings.vim
source $HOME/.vim/editing.vim
source $HOME/.vim/window.vim
source $HOME/.vim/extensions.vim
source $HOME/.vim/snippets.vim
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Load local config
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
if filereadable($HOME . "/.vimrc.local")
source ~/.vimrc.local
endif