forked from zerob13/vimrc
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathvim_config.vim
More file actions
55 lines (47 loc) · 781 Bytes
/
vim_config.vim
File metadata and controls
55 lines (47 loc) · 781 Bytes
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
55
" filetype off
" Plugins
" set rtp+=~/.vim/bundle/Vundle.vim
" call vundle#begin()
" try
" source ~/.vim/configs/plugin.vim
" catch
" endtry
" call vundle#end()
" filetype plugin indent on
" Install vim-plugs https://github.com/junegunn/vim-plug
" vim-plugs
call plug#begin('~/.vim/plugged')
try
source ~/.vim/configs/vim-plug.vim
catch
endtry
call plug#end()
" ctrlp
set runtimepath^=~/.vim/bundle/ctrlp.vim
" common settings
try
source ~/.vim/configs/common.vim
catch
endtry
if has('mac')
"----------
" only for yosemite
set shell=bash\ -l
" ---------
endif
" gui
try
source ~/.vim/configs/gui.vim
catch
endtry
" html
" keys
try
source ~/.vim/configs/keymaps.vim
catch
endtry
" golang
try
source ~/.vim/configs/go.vim
catch
endtry