Skip to content

Commit

Permalink
Get haskell stuff working
Browse files Browse the repository at this point in the history
A lot of it is just blind guess/trying and relying upon autoloading
from other req-package calls, but everything seems to be loading now.

Originally had tried to use the functionality documented in
emacsorphanage/req-package#18 for more closely
specifying each individual section but couldn't get this to
work (e.g. it worked for the subword aspect but not for shm, etc.).
  • Loading branch information
ivan-m committed Mar 24, 2017
1 parent 30a7ac5 commit 0e7dbbc
Show file tree
Hide file tree
Showing 2 changed files with 202 additions and 124 deletions.
17 changes: 13 additions & 4 deletions site-lisp/common-settings.el
Expand Up @@ -280,6 +280,8 @@ the actual manpage using the function `man'."
(req-package flycheck
:init
(setq flycheck-check-syntax-automatically '(save))
:commands
flycheck-mode
:config
(add-to-list 'flycheck-mode-hook 'flycheck-color-mode-line-mode))

Expand All @@ -292,11 +294,18 @@ the actual manpage using the function `man'."
:init
(setq flyspell-issue-message-flag nil)
(setq flyspell-issue-welcome-flag nil)
(add-hook 'prog-mode-hook
(lambda ()
(flyspell-prog-mode)))
:diminish flyspell-mode
:config
(define-key flyspell-mode-map (kbd "C-.") nil)
;; '(define-key flyspell-mode-map (kbd "C-M-i") nil)
(define-key flyspell-mode-map (kbd "C-,") nil))
:commands
flyspell-mode
flyspell-prog-mode
:bind
(:map flyspell-mode-map
("C-." . nil)
;; ("C-M-i" . nil)
("C-," . nil)))

(req-package auto-highlight-symbol
:init
Expand Down

0 comments on commit 0e7dbbc

Please sign in to comment.