6fc0b79a33
Fix typo preventing layer initialisation. Submitting this PR via the github online editor--let me know if anything weird happens.
12 lines
289 B
EmacsLisp
12 lines
289 B
EmacsLisp
(defvar scala-packages
|
|
'(
|
|
ensime
|
|
sbt-mode
|
|
scala-mode2
|
|
)
|
|
"List of all packages to install and/or initialize. Built-in packages
|
|
which require an initialization must be listed explicitly in the list.")
|
|
|
|
(defun spacemacs/init-ensime ()
|
|
(use-package ensime
|
|
:defer t))
|