mirror of
https://github.com/alrayyes/dotfiles/
synced 2023-11-14 15:56:30 +00:00
Dictionaries work now
This commit is contained in:
parent
7d6bc4dffe
commit
aee74ed0e4
@ -11,6 +11,7 @@
|
||||
- [[#fonts][Fonts]]
|
||||
- [[#lsp-backends][LSP Backends]]
|
||||
- [[#configured-applications][Configured Applications]]
|
||||
- [[#configured-locales][Configured Locales]]
|
||||
- [[#fish][Fish]]
|
||||
- [[#theme][Theme]]
|
||||
- [[#package-manager][Package Manager]]
|
||||
@ -94,6 +95,12 @@ A repository of my personal configuration files.
|
||||
- [[https://gitlab.com/ajak/tuir][tuir]]
|
||||
- [[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
|
||||
*** Theme
|
||||
- [[https://github.com/oh-my-fish/theme-bobthefish][bobthefish]]
|
||||
|
@ -227,3 +227,13 @@ Setup mu4e with multiple profiles
|
||||
(elfeed-goodies/setup))
|
||||
#+END_SRC
|
||||
* 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
|
||||
|
Loading…
Reference in New Issue
Block a user