neovim安装dein.vim

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.vimif 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() endifif dein#check_install(): call dein#install() endiffiletype plugin indent on syntax enable

    推荐阅读