dein.vim を導入する そしてカラースキームを適用する
環境
CentOS 8
code:Shell
vim --version
VIM - Vi IMproved 8.0 (2016 Sep 12, compiled Jun 18 2020 15:49:08)
dein.vim とは
プラグインマネージャ.
これを導入すると toml ファイルに導入したいプラグインをちょちょっと書くだけで簡単に導入できるようになる(らしい)
dein.vim を導入する
Quickstart に従う.
$ cd /tmp
$ sh ./installer.sh ~/.cache/dein
.vimrc を開く
$ cd ~
$ vim .vimrc
以下を書き込む.
code:.vimrc
" dein.vim settings {{{
" install dir {{{
let s:dein_dir = expand('~/.cache/dein')
let s:dein_repo_dir = s:dein_dir . '/repos/github.com/Shougo/dein.vim'
" }}}
" dein installation check {{{
if &runtimepath !~# '/dein.vim'
if !isdirectory(s:dein_repo_dir)
endif
execute 'set runtimepath^=' . s:dein_repo_dir
endif
" }}}
" begin settings {{{
if dein#load_state(s:dein_dir)
call dein#begin(s:dein_dir)
" .toml file
let s:rc_dir = expand('~/.vim')
if !isdirectory(s:rc_dir)
call mkdir(s:rc_dir, 'p')
endif
let s:toml = s:rc_dir . './dein.toml'
" read toml and cache
call dein#load_toml(s:toml, {'lazy': 0})
" end settings
call dein#end()
call dein#save_state()
endif
" }}}
" plugin installation check {{{
if dein#check_install()
call dein#install()
endif
" }}}
" plugin remove check {{{
let s:removed_plugins = dein#check_clean()
if len(s:removed_plugins) > 0
call map(s:removed_plugins, "delete(v:val, 'rf')")
call dein#recache_runtimepath()
endif
" }}}
$ mkdir .vim
$ touch ~/.vim/dein.toml
カラースキームを導入する
dein.toml に書く
code:dein.toml
plugins
repo = 'jpo/vim-railscasts-theme' ← 適当に自分が導入したいプラグインの名前をいれる
hook_add = '''
set background=dark
'''
.vimrcに追記する
code:.vimrc
colorscheme railscasts ← 自分が導入したいプラグインの名前をいれる
syntax on
色が変わったらめでたしめでたし.
Thanks ❤ yuusuine.icon