doomemacs/init/init-fly.el

19 lines
588 B
EmacsLisp
Raw Normal View History

2014-08-10 07:25:06 +08:00
(use-package flycheck :ensure t
2014-08-08 06:35:22 +08: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)
(setq-default flycheck-disabled-checkers '(emacs-lisp-checkdoc))))
2014-08-10 07:25:06 +08:00
(use-package flyspell :ensure t
2014-08-08 06:35:22 +08:00
:commands flyspell-mode
:diminish (flyspell-mode . " @")
:config
(setq ispell-program-name "aspell"
ispell-list-command "--list"))
;;
(provide 'init-fly)