sort ispell with spelling instead of company-mode

This commit is contained in:
Janis 2025-01-09 14:28:26 +01:00
parent b295550143
commit 0ea86ed3da

View file

@ -767,6 +767,15 @@ Also use =undo-fu=, which evil can use.
(setq jinx-languages "en_GB dk_DK de_DE")) (setq jinx-languages "en_GB dk_DK de_DE"))
#+end_src #+end_src
Use =ispell= with company mode for completion in text-modes
#+begin_src emacs-lisp
(use-package ispell
:straight t
:defer t
:config
(setq ispell-dictionary "en_GB"))
#+end_src
** LaTeX ** LaTeX
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package auctex (use-package auctex
@ -1174,15 +1183,6 @@ Use =consult-xref= for =lsp-xref= and =xref-find-references=.
company-idle-delay 0.0)) company-idle-delay 0.0))
#+end_src #+end_src
Use =ispell= with company mode for completion in text-modes
#+begin_src emacs-lisp
(use-package ispell
:straight t
:defer t
:config
(setq ispell-dictionary "en_GB"))
#+end_src
** COMMENT Corfu - Auto-Completion ** COMMENT Corfu - Auto-Completion
Auto-completion using =corfu=: Auto-completion using =corfu=:
#+begin_src emacs-lisp #+begin_src emacs-lisp