vimでプラグイン管理をしようと思いググりますが、window環境だと情報少ないですね。。
NeoBundle入れてから開発がdein.vimに移行したことに気が付きました。。泣
以下、備忘録です。
github:
Shogoさんありがとうございます。
https://github.com/Shougo/dein.vim
インストール
powershell
#インストーラーのダウンロード。Invoke-WebRequesthttps://raw.githubusercontent.com/Shougo/dein.vim/master/bin/installer.ps1-OutFileinstaller.ps1#-> %userprofile%/.cache/deinにインストールします。./installer.ps1~/.cache/dein
_vimrcの設定
~/_vimrc
"dein Scripts-----------------------------if&compatible
set nocompatible
endif" Add the dein installation directory into runtimepathset runtimepath+=~/.cache/dein/repos/github.com/Shougo/dein.vimif 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')if!has('nvim')call dein#add('roxma/nvim-yarp')call dein#add('roxma/vim-hug-neovim-rpc')" ここに入れたいプラグインを記入endifcall dein#end()call dein#save_state()endif" 文字化けする場合はエンコードの設定をここに入れる。filetype plugin indent on
syntax enable
" If you want to install not installed plugins on startup.if dein#check_install()call dein#install()endif"End dein Scripts-------------------------
プラグインインストール
" vim上で:call dein#install()
文字化けした場合、エンコードの設定を、
filetype plugin indent on
の前に入れてやらないとダメなようです!
LTGMお願いします!!
モチベーションになります!!