Skip to content

Instantly share code, notes, and snippets.

@phpisciuneri
Created November 10, 2015 15:40
Show Gist options
  • Save phpisciuneri/ca6d27a8633c1bd342f8 to your computer and use it in GitHub Desktop.
Save phpisciuneri/ca6d27a8633c1bd342f8 to your computer and use it in GitHub Desktop.
scala-mode2 for emacs v24
;;
;; add syntax highlighting and code indenting for scala
;; see https://github.com/hvesalai/scala-mode2
;; REQUIRES: emacs >= v24
;;
(require 'package)
(add-to-list 'package-archives
'("melpa" . "http://melpa.milkbox.net/packages/") t)
(package-initialize)
(unless (package-installed-p 'scala-mode2)
(package-refresh-contents) (package-install 'scala-mode2))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment