Clean up and various changes

This commit is contained in:
Henrik Lissner 2014-10-09 18:37:37 -04:00
parent b1f9683d27
commit ee52f30027
8 changed files with 49 additions and 19 deletions

View file

@ -1,15 +1,15 @@
(provide 'init-fly)
(use-package flycheck
: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))
:init
(add-hook 'after-init-hook #'global-flycheck-mode))
(progn
(setq-default 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))
(add-hook 'after-init-hook #'global-flycheck-mode)))
(use-package flyspell
:commands flyspell-mode