spacemacs 104.x

This commit is contained in:
Yann Esposito (Yogsototh) 2015-09-29 19:23:31 +02:00
parent 122ba04d51
commit 0319918663
3 changed files with 4 additions and 12 deletions

View file

@ -23,6 +23,7 @@
(colors :variables colors-enable-nyan-cat-progress-bar t)
fasd
markdown
elm
)
;; A list of packages and/or extensions that will not be install and loaded.
dotspacemacs-excluded-packages '(ghc company-ghc)
@ -255,7 +256,9 @@ This function is called at the very end of Spacemacs initialization."
'(ring-bell-function (quote ignore) t)
'(safe-local-variable-values
(quote
((haskell-indent-spaces . 2)
((haskell-process-use-ghci . t)
(haskell-indent-spaces . 4)
(haskell-indent-spaces . 2)
(haskell-process-args-ghci "ghci")
(haskell-process-path-ghci . "stack")
(haskell-process-type . stack-ghci)))))

View file

@ -1 +0,0 @@
Put this directory in `~/.emacs.d/private` to enable elm-mode

View file

@ -1,10 +0,0 @@
;; packages.el -- elm layer packages file for Spacemacs
(defvar elm-packages
'(elm-mode))
(defvar elm-excluded-packages '() "List of packages to exclude.")
(defun elm/init-elm-mode ()
(add-hook 'elm-mode-hook (lambda () (electric-indent-local-mode -1)))
(setq elm-indent-offset 2)
"Initialize my package")