diff options
Diffstat (limited to 'tag-emacs')
-rw-r--r-- | tag-emacs/emacs.d/init.org | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index a89a4c5..87cd664 100644 --- a/tag-emacs/emacs.d/init.org +++ b/tag-emacs/emacs.d/init.org @@ -1882,6 +1882,22 @@ really seem to use it. :bind (("C-c C-e" . quickrun))) #+END_SRC +** Scala + +Let’s try using Scala. + +#+BEGIN_SRC emacs-lisp + (use-package scala-mode + :pin melpa-stable) +#+END_SRC + +And add ensime, an IDE-style environment. + +#+BEGIN_SRC emacs-lisp + (use-package ensime + :pin melpa-stable) +#+END_SRC + ** Web development *** js2-mode |