forked from luan/vimfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimrc
More file actions
55 lines (44 loc) · 1.39 KB
/
vimrc
File metadata and controls
55 lines (44 loc) · 1.39 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
" =======================================
" Initially based on/forked from: Jeremy Mack (@mutewinter)
" [http://github.com/luan/vimfiles]
" Maintained By: Luan Santos (GitHub: @luan)
" =======================================
set nocompatible
runtime! Plug.vim
silent! source ~/.vimrc.local.before
runtime! config/basic.vim
runtime! config/bindings.vim
runtime! config/colors.vim
" Platform Specific
runtime! config/platform.vim
" ----------------------------------------
" Plugin Configuration
" ----------------------------------------
try
call glaive#Install()
catch
endtry
runtime! config/plugin/NERDTree.vim
runtime! config/plugin/ack.vim
runtime! config/plugin/airline.vim
runtime! config/plugin/autoclose.vim
runtime! config/plugin/commentary.vim
runtime! config/plugin/ctrlp.vim
runtime! config/plugin/echodoc.vim
runtime! config/plugin/fugitive.vim
runtime! config/plugin/golang.vim
runtime! config/plugin/json.vim
runtime! config/plugin/neocomplete.vim
runtime! config/plugin/neosnippet.vim
runtime! config/plugin/omnicompletion.vim
runtime! config/plugin/rainbow.vim
runtime! config/plugin/signify.vim
runtime! config/plugin/tagbar.vim
runtime! config/plugin/tmux-navigator.vim
runtime! config/plugin/undotree.vim
" ----------------------------------------
" Lib load path
" ----------------------------------------
runtime! lib/functions.vim
runtime! lib/auto_commands.vim
silent! source ~/.vimrc.local