mirror of
https://github.com/correl/dotfiles.git
synced 2024-12-18 03:00:11 +00:00
[emacs] Add flyspell
This commit is contained in:
parent
313aecb0e9
commit
45ba7ec39f
1 changed files with 21 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue