Vim & Scala

Hi! If you’re wondering how you can enable a pretty nasty Scala highlighting for Vim using a single terminal instruction, then here we go: mkdir -p ~/.vim/{ftdetect,indent,syntax} && for d in ftdetect indent syntax ; do wget –no-check-certificate -O ~/.vim/$d/scala.vim https://raw.githubusercontent.com/derekwyatt/vim-scala/master/syntax/scala.vim; done You may not necessarily like the highlighting provided by Derek, of course you […]