-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdein.toml
More file actions
42 lines (34 loc) · 730 Bytes
/
dein.toml
File metadata and controls
42 lines (34 loc) · 730 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
[[plugins]]
repo = 'vim-jp/vimdoc-ja'
# NerdTree
[[plugins]]
repo = 'scrooloose/nerdtree'
# neocomplete
[[plugins]]
repo = 'Shougo/neocomplete.vim'
# vim-fugitive
[[plugins]]
repo = 'tpope/vim-fugitive'
# Conque-GDB
[[plugins]]
repo = 'vim-scripts/Conque-GDB'
# grep.vim
[[plugins]]
repo = 'vim-scripts/grep.vim'
# Color scheme hybrid
[[plugins]]
repo = 'w0ng/vim-hybrid'
# fzf
[[plugins]]
repo = 'junegunn/fzf'
build = './install --bin'
merged = '0'
[[plugins]]
repo = 'junegunn/fzf.vim'
depends = 'fzf'
hook_add = '''
command! -bang -nargs=* Rg
\ call fzf#vim#grep(
\ 'rg --line-number --no-heading '.shellescape(<1-args>, 0,
\ fzf#vim#with_preview({'options': '--exact --reverse'}, 'right:50%:wrap'))
'''