fix problem ?

This commit is contained in:
Luj 2025-07-23 21:10:23 +02:00
parent 98063b3e14
commit de100722f1
Signed by: luj
GPG key ID: 6FC74C847011FD83

View file

@ -546,9 +546,10 @@ Completions are at the core of the editing experience, I try to use a stack that
:ensure (:files (:defaults "extensions/vertico-directory.el"))
:demand t
:bind (:map vertico-map
("DEL" . vertico-directory-delete-char)
("M-DEL" . vertico-directory-delete-word))
("DEL" . vertico-directory-delete-char)
("M-DEL" . vertico-directory-delete-word))
:init
:config
(vertico-mode))
#+end_src
@ -1341,8 +1342,6 @@ I use ~notmuch~ to index and search through my large mail inboxes.
#+end_src
#+begin_src emacs-lisp :tangle "init.el"
(use-package notmuch-addr
:ensure t)
@ -1752,11 +1751,11 @@ Well, why not use it for PDF? Also integrate with /LaTeX/ etc.
(use-package consult-flycheck
:ensure t)
(use-package eglot-ltex
:ensure (:host github :repo "emacs-languagetool/eglot-ltex")
(use-package eglot-ltex-plus
:ensure (:host github :repo "emacs-languagetool/eglot-ltex-plus")
:init
(setq eglot-ltex-server-path "ltex-cli"
eglot-ltex-communication-channel 'stdio))
(setq eglot-ltex-plus-server-path (executable-find "ltex-ls-plus"))
(setq eglot-ltex-plus-communication-channel 'stdio))
#+end_src