vimのシンタックスハイライトにscalaを追加する

macでscalaを使うためにはbrewでインストールするのが一番簡単です

brew install scala

このままだとvimで.scalaを開いた際に色がつかないので非常にみづらいです

いろいろやり方はあるみたいですがこれが一番簡単でした

http://bsnyderblog.blogspot.jp/2012/12/vim-syntax-highlighting-for-scala-bash.html

mkdir -p ~/.vim/{ftdetect,indent,syntax} && for d in ftdetect indent syntax ; do wget --no-check-certificate -O ~/.vim/$d/scala.vim https://raw.github.com/scala/scala-dist/master/tool-support/src/vim/$d/scala.vim; done