Git Clone代码到本地:
git clone https://github.com/Shougo/dein.vim \
~/.config/nvim/dein/repos/github.com/Shougo/dein.vim
编辑init.vim
set runtimepath+=~/.config/nvim/dein/repos/github.com/Shougo/dein.vim
if dein#load_state('~/.config/nvim/dein')
call dein#begin('~/.config/nvim/dein')
call dein#add('~/.config/nvim/dein/repos/github.com/Shougo/dein.vim')
call dein#add('Shougo/defx.nvim')
call dein#end()
call dein#save_state()
endif
if dein#check_install():
call dein#install()
endif
filetype plugin indent on
syntax enable