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

vim-plugでカラースキームのインストール

$
0
0

vimのプラグインマネージャvim-plugを使い始めた。vim-plugでカラースキームをインストール後、~/.vim/colorsに配置するには、post-update hookを利用する。
deep-spaceをインストールする場合を例にとってみよう。
.vimrc


...

setbackground=darkcolorscheme deep-space

...

call plug#begin('~/.vim/plugged')
...
Plug 'tyrannicaltoucan/vim-deep-space', {'do': 'cp colors/* ~/.vim/colors'}
...
call plug#end()

...

と記述する。doオプションが処理の本体。:PlugInstallコマンドでdeep-spaceのインストール後、deep-space/colors/deep-space.vim~/.vim/colors下に配置してくれる。
:PlugInstallもしくは :PlugUpdateでプラグインの元レポジトリからのコードの取得が行われなかったとき(すでにインストールされていたりバージョンの更新がなかったとき)はpost-update hookを行われないようだ。
うまくいくと


...

- Finishing ... Done!
- Post-update hook for vim-deep-space ... OK 

...

と表示され確認できる。


Viewing all articles
Browse latest Browse all 5608

Trending Articles



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