2014-09-05 17:08:40 -04:00
|
|
|
(provide 'init-fly)
|
|
|
|
|
2014-08-29 22:37:25 -04:00
|
|
|
(use-package flycheck
|
2014-09-20 16:54:04 -04:00
|
|
|
:config
|
|
|
|
(setq flycheck-indication-mode 'right-fringe
|
|
|
|
;; Removed checks on idle/change for snappiness
|
|
|
|
flycheck-check-syntax-automatically
|
|
|
|
'(save new-line mode-enabled)
|
|
|
|
flycheck-disabled-checkers
|
|
|
|
'(emacs-lisp emacs-lisp-checkdoc))
|
2014-09-29 15:25:45 -04:00
|
|
|
:init
|
2014-09-20 16:54:04 -04:00
|
|
|
(add-hook 'after-init-hook #'global-flycheck-mode))
|
2014-08-07 18:35:22 -04:00
|
|
|
|
2014-08-29 22:37:25 -04:00
|
|
|
(use-package flyspell
|
2014-09-20 16:54:04 -04:00
|
|
|
:commands flyspell-mode
|
|
|
|
:config
|
|
|
|
(setq ispell-program-name "aspell"
|
|
|
|
ispell-list-command "--list"))
|