15
8

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 5 years have passed since last update.

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

Last updated at Posted at 2016-09-22

vimのプラグインマネージャvim-plugを使い始めた。vim-plugでカラースキームをインストール後、~/.vim/colorsに配置するには、__post-update hook__を利用する。
deep-spaceをインストールする場合を例にとってみよう。
まず~/.vim/colorsディレクトリと~/.vim/pluggedディレクトリがなければ作っておく。
.vimrc


...
set t_Co=256
set background=dark
colorscheme 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 

...

と表示され確認できる。

15
8
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
15
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?