-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc.dein
34 lines (27 loc) · 869 Bytes
/
.vimrc.dein
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
filetype off
if &compatible
set nocompatible
endif
" Add the dein installation directory into runtimepath
set runtimepath+=~/.cache/dein/repos/github.com/Shougo/dein.vim
if dein#load_state('~/.cache/dein')
call dein#begin('~/.cache/dein')
call dein#add('~/.cache/dein/repos/github.com/Shougo/dein.vim')
call dein#add('Shougo/deoplete.nvim')
call dein#add('Shougo/neocomplete.vim')
call dein#add('Shougo/neocomplcache')
call dein#add('scrooloose/nerdtree')
call dein#add('thinca/vim-quickrun')
call dein#add('tpope/vim-surround')
call dein#add('elzr/vim-json')
call dein#add('pechorin/any-jump.vim')
call dein#add('vim-airline/vim-airline')
if !has('nvim')
call dein#add('roxma/nvim-yarp')
call dein#add('roxma/vim-hug-neovim-rpc')
endif
call dein#end()
call dein#save_state()
endif
filetype plugin indent on
syntax enable