[emacs] Add flyspell

This commit is contained in:
Correl Roush 2015-04-27 09:52:21 -04:00
parent 313aecb0e9
commit 45ba7ec39f

View file

@ -78,6 +78,15 @@ Helm projectile integration
:ensure t
:defer t)
#+END_SRC
*** helm-flyspell
#+name: packages
#+begin_src emacs-lisp
(use-package helm-flyspell
:ensure t
:commands helm-flyspell-correct
:init (eval-after-load 'flyspell
'(define-key flyspell-mode-map (kbd "C-;") 'helm-flyspell-correct)))
#+end_src
** Ace Jump
#+name: packages
#+BEGIN_SRC emacs-lisp
@ -124,6 +133,18 @@ Helm projectile integration
:init
(add-hook 'after-init-hook #'global-flycheck-mode))
#+END_SRC
** Flyspell
#+name: packages
#+BEGIN_SRC emacs-lisp
(use-package flyspell
:ensure t
:commands flyspell-mode
:diminish flyspell-mode
:config (mapcar (lambda (mode-hook)
(add-to-list mode-hook #'flyspell-mode))
'(text-mode-hook
org-mode-hook)))
#+END_SRC
** Git-Gutter
#+name: packages
#+BEGIN_SRC emacs-lisp