doomemacs/init/init-fly.el

18 lines
576 B
EmacsLisp
Raw Normal View History

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