Make ensime use stable version as unstable is for ensime devs

This commit is contained in:
Diego Alvarez 2016-11-21 20:18:03 -08:00 committed by Eivind Fonn
parent 94ed135678
commit dfa18dafc3
2 changed files with 15 additions and 0 deletions

View File

@ -89,6 +89,14 @@ Backend can be chosen on a per project basis using directory local variables
*Note:* you can easily add a directory local variable with ~SPC f v d~.
If you want to use the Ensime backend, you should modify your =~/.spacemacs= to
use the recommended Ensime version (Stable). Please add the following lines to
=dotspacemacs/user-init=:
#+BEGIN_SRC emacs-lisp
(push '("melpa-stable" . "stable.melpa.org/packages/") configuration-layer--elpa-archives)
(push '(ensime . "melpa-stable") package-pinned-packages)
#+END_SRC
* Backends
** Meghanada
Meghanada is composed of a lightweight server and an Emacs minor mode. It

View File

@ -23,6 +23,13 @@ To use this configuration layer, add it to your =~/.spacemacs=. You will need to
add =scala= to the existing =dotspacemacs-configuration-layers= list in this
file.
Then, you should modify your =~/.spacemacs= to use the recommended Ensime
version (Stable). Please add the following lines to =dotspacemacs/user-init=:
#+BEGIN_SRC emacs-lisp
(push '("melpa-stable" . "stable.melpa.org/packages/") configuration-layer--elpa-archives)
(push '(ensime . "melpa-stable") package-pinned-packages)
#+END_SRC
* Ensime
[[http://ensime.org/][ENSIME]] provides IDE-like features, such as refactoring, incremental compilation
and project-wide type-checking.