Just for posterity, here is a Bash one-liner to download the VIM plugins to handle syntax highlighting for Scala:
Update
Here is a solution using cURL submitted by Joe:
1 | $ mkdir -p ~/.vim/{ftdetect,indent,syntax} && for d in ftdetect indent syntax ; do wget --no-check-certificate -O ~/.vim/$d/scala.vimhttps://raw.githubusercontent.com/scala/scala-dist/master/tool-support/src/vim/$d/scala.vim; done |
Here is a solution using cURL submitted by Joe:
1 | mkdir -p ~/.vim/{ftdetect,indent,syntax} && for d in ftdetect indent syntax ; do curl -o ~/.vim/$d/scala.vimhttps://raw.githubusercontent.com/scala/scala-dist/master/tool-support/src/vim/$d/scala.vim; done |