-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
38 lines (27 loc) · 879 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
38
" autocmd対策する
let g:python_host_prog = ''
let g:python3_host_prog = system('which python3 | tr -d "\n"')
let s:dein_cache_path = expand('~/.cache/msys/dein')
let s:dein_dir = s:dein_cache_path
\ .'/repos/github.com/Shougo/dein.vim'
if &runtimepath !~ '/dein.vim'
if !isdirectory(s:dein_dir)
execute '!git clone https://github.com/Shougo/dein.vim' s:dein_dir
endif
execute 'set runtimepath+=' . fnamemodify(s:dein_dir, ':p')
endif
if dein#load_state(s:dein_cache_path)
call dein#begin(s:dein_cache_path)
call dein#load_toml('~/.msys/dein.toml', {'lazy' : 0})
call dein#end()
call dein#save_state()
endif
if dein#check_install()
call dein#install()
endif
filetype plugin indent on
syntax enable
source ~/.msys/rc/myfunction.rc.vim
source ~/.msys/rc/options.rc.vim
source ~/.msys/rc/keymap.rc.vim
source ~/test.rc.vim