Download Dependencies Download IntelliJ IDEA Community Edition (10.0.3) http://www.jetbrains.com/idea/download Download Scala http://www.scala-lang.org/downloads (2.8.1 installer) Download SBT http://code.google.com/p/simple-build-tool/ (0.7.5) Setup Setup SBT according to this page (Launching Sbt section) http://code.google.com/p/simple-build-tool/wiki/Setup Add Scala/SBT plugins to IntelliJ IDEA Go to File/Settings/Plugins, choose Available tab, right click on Scala plugin and click on 'Download and Install'. Do the same for SBT plugin. Restart IntelliJ IDEA Go to File/Settings/SBT and set location of your SBT jar file and if you're on windows behind firewall add proxy info to vm params (-Dhttp.proxyHost=<proxy_server> -Dhttp.proxyPort=<proxy_port>) Create Project Create new Folder ScalaProject Run sbt command from that folder, choose 'y' to create new pr...