Quantcast
Channel: Vimタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 5608

dein.vim を使ってみた (というかただ初期設定してみた)

$
0
0

重い腰を上げて、ようやく NeoBundleから dein.vimに乗り換えてみました。

何はなくともまずはGitHub

とにかくインストールしてみよう!ってことで、下記を実行。

公式リポジトリのREADMEより
$ curl https://raw.githubusercontent.com/Shougo/dein.vim/master/bin/installer.sh > installer.sh
$ sh ./installer.sh {specify the installation directory}

{specify the installation directory}の部分は何を指定したら良いんだろう?と思ったけど、たぶん$HOME/.vimでいいんじゃね?って事でこうしてみた。

こうしてみた
$ sh ./installer.sh $HOME/.vim
こんな風になった
$ sh ./installer.sh $HOME/.vim
Install to "/home/vagrant/.vim/repos/github.com/Shougo/dein.vim"...

git is /usr/bin/git

Begin fetching dein...
Initialized empty Git repository in /home/vagrant/.vim/repos/github.com/Shougo/dein.vim/.git/
remote: Counting objects: 2931, done.
remote: Compressing objects: 100% (72/72), done.
Receiving objects: 100% (2931/2931), 465.40 KiB |166 KiB/s, done.
remote: Total 2931(delta 36), reused 0(delta 0), pack-reused 2853
Resolving deltas: 100% (1690/1690), done.
Done.

Please add the following settings for dein to the top of your vimrc (Vim) or init.vim (NeoVim) file:


"dein Scripts-----------------------------(略)"End dein Scripts-------------------------


Done.
Complete setup dein!

$HOME/.vim/repos/github.com/Shougo/dein.vim ???

ん・・・? なんかやたら階層深くね?

・・・と思ったけど、どうやら$HOME/.vim/bundleの代わりが$HOME/.vim/reposって感じらしい。
reposの配下はリポジトリURLに対応する感じなのね。なるほどね。

$HOME/.vimrc

というわけで、うちの$HOME/.vimrcはこんな風にしてみました。

$HOME/.vimrc
"dein Scripts-----------------------------if&compatiblesetnocompatible" Be iMprovedendif" Required:setruntimepath^=~/.vim/repos/github.com/Shougo/dein.vim" Required:call dein#begin(expand('~/.vim'))" Let dein manage dein" Required:call dein#add('Shougo/dein.vim')if filereadable(expand('~/.vimrc.dein'))
    source ~/.vimrc.dein
endif" Required:call dein#end()" Required:filetype plugin indent on" If you want to install not installed plugins on startup.if dein#check_install()call dein#install()endif"End dein Scripts-------------------------

runtime!conf.d/.vimrc.*
if filereadable(expand('~/.vimrc.local'))
    source ~/.vimrc.local
endif

dein.vimで管理したいプラグインは $HOME/.vimrc.deinに追記していく感じで。


Viewing all articles
Browse latest Browse all 5608

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>