fix(tazjin/emacs): set telega's completing read to standard

Telega tries to use some random completing-read functions, but I just
want it to use the default one, which I've configured the way I want.

Change-Id: I33da24f257e8ac0cae4a7d25ba6c5e4e656fcad5
Reviewed-on: https://cl.tvl.fyi/c/depot/+/9478
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
Autosubmit: tazjin <tazjin@tvl.su>
This commit is contained in:
Vincent Ambo 2023-09-27 13:35:09 +03:00 committed by clbot
parent fa0e7ffa61
commit 6a834fd109

View file

@ -181,7 +181,9 @@
:bind (:map global-map ("s-t" . telega)
:map telega-chat-button-map ("a" . ignore))
:config (telega-mode-line-mode 1)
:custom (telega-emoji-use-images nil)
:custom
(telega-emoji-use-images nil)
(telega-completing-read-function #'completing-read)
:hook (telega-chat-mode . company-mode))
(use-package terraform-mode)