2014-09-05 17:08:40 -04:00
|
|
|
(provide 'init-fly)
|
|
|
|
|
2014-08-29 22:37:25 -04:00
|
|
|
(use-package flycheck
|
2014-09-29 15:25:45 -04:00
|
|
|
:init
|
2014-10-09 18:37:37 -04:00
|
|
|
(progn
|
|
|
|
(setq-default flycheck-indication-mode 'right-fringe
|
|
|
|
;; Removed checks on idle/change for snappiness
|
|
|
|
flycheck-check-syntax-automatically
|
2014-11-29 20:21:03 -05:00
|
|
|
'(save mode-enabled)
|
2014-10-09 18:37:37 -04:00
|
|
|
flycheck-disabled-checkers
|
2014-11-29 20:21:03 -05:00
|
|
|
'(emacs-lisp-checkdoc make))
|
2014-10-09 18:37:37 -04:00
|
|
|
(add-hook 'after-init-hook #'global-flycheck-mode)))
|
2014-08-07 18:35:22 -04:00
|
|
|
|
2014-11-29 20:21:03 -05:00
|
|
|
(use-package flyspell :commands flyspell-mode)
|