Refactor initfiles

This commit is contained in:
Henrik Lissner 2014-09-05 17:08:40 -04:00
parent 6b094920bd
commit f2e2f05742
34 changed files with 1161 additions and 860 deletions

View file

@ -1,3 +1,5 @@
(provide 'init-fly)
(use-package flycheck
:init (add-hook 'after-init-hook #'global-flycheck-mode)
:config
@ -5,7 +7,7 @@
;; 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))))
(setq-default flycheck-disabled-checkers '(emacs-lisp emacs-lisp-checkdoc))))
(use-package flyspell
:commands flyspell-mode
@ -13,6 +15,3 @@
:config
(setq ispell-program-name "aspell"
ispell-list-command "--list"))
;;
(provide 'init-fly)