1
0
mirror of https://github.com/alrayyes/dotfiles/ synced 2023-11-14 15:56:30 +00:00

Dictionaries work now

This commit is contained in:
Ryan Kes 2020-03-24 08:37:38 +01:00
parent 7d6bc4dffe
commit aee74ed0e4
2 changed files with 17 additions and 0 deletions

View File

@ -11,6 +11,7 @@
- [[#fonts][Fonts]] - [[#fonts][Fonts]]
- [[#lsp-backends][LSP Backends]] - [[#lsp-backends][LSP Backends]]
- [[#configured-applications][Configured Applications]] - [[#configured-applications][Configured Applications]]
- [[#configured-locales][Configured Locales]]
- [[#fish][Fish]] - [[#fish][Fish]]
- [[#theme][Theme]] - [[#theme][Theme]]
- [[#package-manager][Package Manager]] - [[#package-manager][Package Manager]]
@ -94,6 +95,12 @@ A repository of my personal configuration files.
- [[https://gitlab.com/ajak/tuir][tuir]] - [[https://gitlab.com/ajak/tuir][tuir]]
- [[https://weechat.org/][weechat]] - [[https://weechat.org/][weechat]]
* Configured Locales
- [[https://ftp.gnu.org/gnu/aspell/dict/en][aspell-en]]
- hunspell-en_GB
- hunspell-en_US
- hunspell_nl
* Fish * Fish
*** Theme *** Theme
- [[https://github.com/oh-my-fish/theme-bobthefish][bobthefish]] - [[https://github.com/oh-my-fish/theme-bobthefish][bobthefish]]

View File

@ -227,3 +227,13 @@ Setup mu4e with multiple profiles
(elfeed-goodies/setup)) (elfeed-goodies/setup))
#+END_SRC #+END_SRC
* Spelling * Spelling
Set dictionaries for languages I use
#+BEGIN_SRC emacs-lisp
(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 "en_GB,nl_NL,en_US")
(setq ispell-dictionary "en_GB,nl_NL,en_US"))
#+END_SRC