-
Notifications
You must be signed in to change notification settings - Fork 0
/
dein_lazy.toml
60 lines (51 loc) · 1.06 KB
/
dein_lazy.toml
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
56
57
58
59
60
[[plugins]]
repo = 'Shougo/deoplete.nvim'
hook_add = 'let g:deoplete#enable_at_startup = 1'
on_i = 1
[[plugins]]
repo = 'mattn/emmet-vim'
on_ft = ['html', 'eruby']
on_i = 1
[[plugins]]
repo = 'tpope/vim-surround'
on_i = 1
[[plugins]]
repo = 'kchmck/vim-coffee-script'
on_ft = ['coffee']
[[plugins]]
repo = 'slim-template/vim-slim.git'
on_ft = ['slim']
[[plugins]]
repo = 'zchee/deoplete-go'
on_ft = ['go']
on_i = 1
buid = 'make'
hook_add = '''
let g:deoplete#sources#go#gocode_binary = "$GOPATH.'/bin/gocode'"
'''
[[plugins]]
repo = 'fatih/vim-go'
on_ft = ['go']
[[plugins]]
repo = 'zchee/deoplete-jedi'
on_ft = ['python']
on_i = 1
hook_add = '''
let g:python3_host_prog = $PYENV_ROOT . '/shims/python'
let g:python2_host_prog = $PYENV_ROOT . '/shims/python'
'''
[[plugins]]
repo = 'w0rp/ale'
on_ft = ['ruby']
hook_add = '''
let g:ale_lint_on_text_changed = 'never'
let g:ale_lint_on_enter = 0
let g:ale_fixers = {
\ 'ruby': ['rubocop'],
\}
let g:ale_fix_on_save = 1
let g:ale_completion_enabled = 1
'''
[[plugins]]
repo = 'tpope/vim-rails'
on_ft = ['ruby']