Complete refactor & implement cask

This commit is contained in:
Henrik Lissner 2014-09-20 16:54:04 -04:00
parent 418f7bc5a6
commit 8f93fb9b73
39 changed files with 1534 additions and 1155 deletions

View file

@ -1,17 +1,19 @@
(provide 'init-fly)
(use-package flycheck
: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 emacs-lisp-checkdoc))))
: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))
:idle
(add-hook 'after-init-hook #'global-flycheck-mode))
(use-package flyspell
:commands flyspell-mode
:diminish (flyspell-mode . " @")
:config
(setq ispell-program-name "aspell"
ispell-list-command "--list"))
:commands flyspell-mode
:diminish (flyspell-mode . " @")
:config
(setq ispell-program-name "aspell"
ispell-list-command "--list"))