don't set haskell-process-type
By default (from `haskell-mode`) `haskell-process-type` is set to `'auto`, so no need to set it here. Also when you explicitly set the value of `haskell-process-type` it gets much harder to configure it.
This commit is contained in:
parent
d9ebee793e
commit
ac46bb8da2
1 changed files with 13 additions and 13 deletions
|
@ -68,19 +68,19 @@
|
|||
(add-hook 'haskell-mode-hook 'haskell-indentation-mode))
|
||||
|
||||
;; settings
|
||||
(setq haskell-process-type 'auto
|
||||
;; Use notify.el (if you have it installed) at the end of running
|
||||
;; Cabal commands or generally things worth notifying.
|
||||
haskell-notify-p t
|
||||
;; To enable tags generation on save.
|
||||
haskell-tags-on-save t
|
||||
;; Remove annoying error popups
|
||||
haskell-interactive-popup-error nil
|
||||
;; Better import handling
|
||||
haskell-process-suggest-remove-import-lines t
|
||||
haskell-process-auto-import-loaded-modules t
|
||||
;; Disable haskell-stylish on save, it breaks flycheck highlighting
|
||||
haskell-stylish-on-save nil)
|
||||
(setq
|
||||
;; Use notify.el (if you have it installed) at the end of running
|
||||
;; Cabal commands or generally things worth notifying.
|
||||
haskell-notify-p t
|
||||
;; To enable tags generation on save.
|
||||
haskell-tags-on-save t
|
||||
;; Remove annoying error popups
|
||||
haskell-interactive-popup-error nil
|
||||
;; Better import handling
|
||||
haskell-process-suggest-remove-import-lines t
|
||||
haskell-process-auto-import-loaded-modules t
|
||||
;; Disable haskell-stylish on save, it breaks flycheck highlighting
|
||||
haskell-stylish-on-save nil)
|
||||
|
||||
;; key bindings
|
||||
(defun spacemacs/haskell-process-do-type-on-prev-line ()
|
||||
|
|
Reference in a new issue