Hi all! I was very busy lately and wasn’t able to post anything here, even though i had some algorithmic stuff ongoing and a couple of interesting problems i may share with you in the near future. Today I decided to post a very small piece of Scala code which express very clearly some basic […]
Scala
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 […]