forked from astrails/dotvim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimrc
More file actions
15 lines (12 loc) · 616 Bytes
/
vimrc
File metadata and controls
15 lines (12 loc) · 616 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
" content of this file is loaded BEFORE all the plugins
source ~/.vim/bundles.vim " vundle plugins list
source ~/.vim/global.vim " general global configuration
source ~/.vim/plugins.vim " configuration for plugins that needs to be set BEFORE plugins are loaded
source ~/.vim/macros.vim " some macros
if has('gui_running')
source ~/.vim/gvimrc " gui specific settings
end
source ~/.vim/before.vim " local BEFORE configs
" after.vim is loaded from ./after/plugin/after.vim
" which should place it AFTER all the other plugins in the loading order
" bindings.vim and local.vim are loaded from after.vim