-
Notifications
You must be signed in to change notification settings - Fork 0
/
.dein_lazy.toml
92 lines (77 loc) · 1.76 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# FIX: has python3 is not work
[[plugins]]
repo = 'SirVer/ultisnips'
if = 'has("python3")'
[[plugins]]
repo = 'psf/black'
on_ft = 'py'
[[plugins]]
repo = 'cespare/vim-toml'
rev = 'main'
on_ft = 'toml'
[[plugins]]
repo = 'tmux-plugins/vim-tmux'
on_ft = 'tmux'
##################
## Javascript ####
##################
[[plugins]]
repo = 'posva/vim-vue'
on_ft = 'vue'
[[plugins]]
repo = 'elzr/vim-json'
on_ft = 'json'
hook_add = 'let g:vim_json_syntax_conceal = 0'
# React
[[plugins]]
repo = 'pangloss/vim-javascript'
on_ft = ['javascript', 'javascript.jsx']
[[plugins]]
repo = 'maxmellon/vim-jsx-pretty'
on_ft = ['javascript', 'javascript.jsx']
[[plugins]]
repo = 'alampros/vim-styled-jsx'
on_ft = ['javascript', 'javascript.jsx']
[[plugins]]
repo = 'moll/vim-node'
on_ft = ['javascript']
[[plugins]]
repo = 'hushicai/tagbar-javascript.vim'
on_ft = ['javascript']
hook_add = '''
call system('npm i -g esctags')
'''
[[plugins]]
repo = 'peitalin/vim-jsx-typescript'
on_ft = ['typescriptreact']
##################
## Ruby ##########
##################
[[plugins]]
repo = 'tpope/vim-rails'
on_ft = ['rb']
[[plugins]]
repo = 'ngmy/vim-rubocop'
on_ft = ['rb']
##################
## Markdown ######
##################
[[plugins]]
repo = 'previm/previm'
on_ft = ['md', 'markdown']
depends = 'open-browser.vim'
hook_add = '''
source ${DOTFILES_ROOT}/.config/vim/plugins/previm.vim
'''
[[plugins]]
repo = 'plasticboy/vim-markdown'
on_ft = ['md', 'markdown']
hook_add = '''
source ${DOTFILES_ROOT}/.config/vim/plugins/vim-markdown.vim
'''
##################
## Csv ##########
##################
[[plugins]]
repo = 'mechatroner/rainbow_csv'
on_ft = ['csv', 'tsv']