[spacemacs] Drop hunspell in favour of using the default aspell

This commit is contained in:
Sebastian Schulze 2020-06-29 13:27:05 +02:00
parent 9bc0213d8c
commit 0631effe92
Signed by: bascht
GPG Key ID: 5BCB1D3B4D38A35A
1 changed files with 0 additions and 13 deletions

View File

@ -459,11 +459,6 @@ executes.
This function is mostly useful for variables that need to be set
before packages are loaded. If you are unsure, you should try in setting them in
`dotspacemacs/user-config' first."
; Scale up fonts for non-hdpi display
(setq ispell-program-name "hunspell")
;; (if (equal (car (split-string (system-name) "\\.")) "zog")
;; (set-face-attribute 'default nil :height 120)))
)
(defun dotspacemacs/user-config ()
@ -563,14 +558,6 @@ you should place your code here."
(flycheck-select-checker 'yaml-yamllint)
))
(with-eval-after-load "ispell"
(setq ispell-program-name "hunspell")
;; ispell-set-spellchecker-params has to be called
;; before ispell-hunspell-add-multi-dic will work
(ispell-set-spellchecker-params)
(ispell-hunspell-add-multi-dic "de_DE,en_GB")
(setq ispell-dictionary "de_DE,en_GB"))
(add-hook 'git-commit-mode-hook (lambda ()
(end-of-line)
(evil-insert-state)))