VimにScala Pluginをインストールする

Scala

Vimプラグイン管理ツールのVundleを使ってインストールしました。

Vundleの導入

 git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
 git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim

.vimrcの設定

 vim ~/.vimrc
 set nocompatible              " be iMproved, required
 filetype off                  " required
 
 " set the runtime path to include Vundle and initialize
 set rtp+=~/.vim/bundle/Vundle.vim
 call vundle#begin()
 
 " let Vundle manage Vundle, required
 Plugin 'gmarik/Vundle.vim'
 
 " Keep Plugin commands between vundle#begin/end.
 " plugin on GitHub repo
 Bundle 'derekwyatt/vim-scala'
 
 " All of your Plugins must be added before the following line
 call vundle#end()            " required
 filetype plugin indent on    " required

vimを立ちあげて下記コマンドを実行するとvim-scala pluginがインストールされます

 :PluginInstall

コマンドラインからインストールする場合は下記を実行します

 vim +PluginInstall +qall 

参考
https://github.com/gmarik/Vundle.vim
https://github.com/derekwyatt/vim-scala

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です