elixir: fix major mode face in mode-line

when a file is opened.
This commit is contained in:
syl20bnr 2016-05-31 20:04:48 -04:00
parent ad40bae1bf
commit 8fc53ae311

View file

@ -25,7 +25,9 @@
(progn
(spacemacs/register-repl 'alchemist 'alchemist-iex-run "alchemist")
(add-hook 'elixir-mode-hook 'alchemist-mode)
(setq alchemist-project-compile-when-needed t)
(setq alchemist-project-compile-when-needed t
alchemist-test-status-modeline nil)
;; setup company backends
(push 'alchemist-company company-backends-elixir-mode)
(push 'alchemist-company company-backends-alchemist-iex-mode))
:config
@ -136,3 +138,4 @@
(spacemacs|use-package-add-hook popwin
:post-config
(push '("*mix*" :tail t :noselect t) popwin:special-display-config)))