はじめに
vimにプラグインを入れる方法です。今回はvimのプラグイン管理ツールのdeinを入れていきます。
PCはmacです。ターミナルを使用しました。
コマンドをぽちぽち打っていきます。
$cd ~/.cache
$mkdir dein
$cd dein
$git clone https://github.com/Shougo/dein.vim
※gitを入れてない方は最初にgitを入れてくださいね。コマンドは下記。
brew install git
curl -fsSL https://raw.githubusercontent.com/Shougo/dein-installer.vim/master/installer.sh > installer.sh
※curlを入れていない方は最初にcurlをインストールしてくださいね。コマンドは下記。
$ brew install curl
※homebrewが入ってない方はhomebrewもインストールしてください・・・。
sh ./installer.sh ~/.cache/dein
下記が表示されたら一旦完了
.vimrcの作成
色々書き方はあるようですが下記のように書いてみました。
.vimrc
if &compatible
set nocompatible
endif
" Required:
set runtimepath+=~.cache/dein/repos/github.com/Shougo/dein.vim
" Required:
if dein#load_state('~.cache/dein')
call dein#begin('~.cache/dein')
call dein#add('~.cache/dein/repos/github.com/Shougo/dein.vim')
" Add or remove your plugins here like this
call dein#add('Shougo/neosnippet.vim')
call dein#add('Shougo/neosnippet-snippets')
# ここにいれたいプラグインをいれる
call dein#add('elixir-editors/vim-elixir')
" Required:
call dein#end()
call dein#save_state()
endif
" Attempt to determine the type of a file based on its name and possibly its
" contents. Use this to allow intelligent auto-indenting for each filetype,
" and for plugins that are filetype specific.
filetype indent plugin on
" 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
今回はelixir-editors/vim-elixirのプラグインを入れてみました。
お疲れ様でした★
参考