5
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

VIM: dein.vimでプラグイン管理 (Windows10)

Last updated at Posted at 2020-09-05

vimでプラグイン管理をしようと思いググりますが、window環境だと情報少ないですね。。
NeoBundle入れてから開発がdein.vimに移行したことに気が付きました。。泣

以下、備忘録です。

github:
Shogoさんありがとうございます。
https://github.com/Shougo/dein.vim

###インストール

powershell
#インストーラーのダウンロード。
Invoke-WebRequest
https://raw.githubusercontent.com/Shougo/dein.vim/master/bin/installer.ps1 -OutFile installer.ps1
#-> %userprofile%/.cache/deinにインストールします。
./installer.ps1 ~/.cache/dein

###_vimrcの設定

~/_vimrc
"dein Scripts-----------------------------
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')
  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
" 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
の前に入れてやらないとダメなようです!

LGTMお願いします!
モチベーションがあがります!

5
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?