Vimをインストールする(インストールされていない場合のみ)
sudo apt update sudo apt install vim
Vimの設定を行う
自分でもいまいちよく理解していないが、今回はVimの設定を完了することが目的なのでよしとする。
dein.vimというプラグイン管理をするものを入れる
cd ~ mkdir ~/.cache mkdir ~/.cache/dein cd .cache/dein/ wget https://raw.githubusercontent.com/Shougo/dein.vim/master/bin/installer.sh sh ./installer.sh ~/.cache/dein/
プラグインの管理ファイルを作成する
今回はplugin.tomlとplugin_lazy.tomlを作成し、次のように使い分ける。
作成した管理ファイルに設定情報を書き込む
cd ~/.cache/ mkdir userconfig cd userconfig/ vi plugin.toml
plugin.tomlに以下の記述をする
[[plugins]] repo = 'Shougo/dein.vim' [[plugins]] repo = 'Shougo/vimproc.vim'
vi plugin_lazy.toml
plugin_lazy.tomlに以下の記述をする
[[plugins]] repo = 'Shougo/unite.vim' [[plugins]] repo = 'Shougo/neomru.vim' on_source = ['unite.vim'] [[plugins]] repo = "davidhalter/jedi-vim" on_ft = ['python']
Vimの設定ファイルにプラグインの設定を書き込む
cd ~ vi ~/.vimrc
vimrcに以下の記述をする
"dein Scripts----------------------------- if &compatible set nocompatible " Be iMproved endif let s:dein_path = expand('~/.cache/dein') let s:dein_repo_path = s:dein_path . '/repos/github.com/Shougo/dein.vim' if &runtimepath !~# '/dein.vim' if !isdirectory(s:dein_repo_path) execute '!git clone https://github.com/Shougo/dein.vim' s:dein_repo_path endif execute 'set runtimepath^=' . fnamemodify(s:dein_repo_path, ':p') endif if dein#load_state(s:dein_path) call dein#begin(s:dein_path) let g:config_dir = expand('~/.cache/userconfig') let s:toml = g:config_dir . '/plugin.toml' let s:lazy_toml = g:config_dir . '/plugin_lazy.toml' " TOML 読み込み call dein#load_toml(s:toml, {'lazy': 0}) call dein#load_toml(s:lazy_toml, {'lazy': 1}) call dein#end() call dein#save_state() endif " Required: 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初心者ということもあり、たくさんの記事を参考にさせていただきました。間違っているところや説明が不十分なところがいっぱいあるかと思います。そのへんはどうかご容赦いただき、コメント等で教えていただけると幸いです。
コメント