diff options
author | Vincent Ambo <mail@tazj.in> | 2023-06-30T13·06+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-07-01T10·21+0000 |
commit | c9272e0651047c7fb8fe5542fd3d999384b3dfa5 (patch) | |
tree | 5d3bb60562b51354d82c61eac5b1efd8e40a9cdf /users | |
parent | 6959a1248f7da99235310c2d89b19d02a43f35bc (diff) |
fix(tazjin/emacs): delegate emoji rendering in telega to emacs r/6376
The images displayed by telega are usually not displaying correctly, this is fixed by simply .. not rendering them, and letting emacs do it through an emoji-supporting font (which I do have installed). Change-Id: I429ff2865c60633329437687c1c09a1aaf8ae29d Reviewed-on: https://cl.tvl.fyi/c/depot/+/8884 Reviewed-by: tazjin <tazjin@tvl.su> Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
Diffstat (limited to 'users')
-rw-r--r-- | users/tazjin/emacs/config/init.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/users/tazjin/emacs/config/init.el b/users/tazjin/emacs/config/init.el index 7eb1a19a8e57..3e9426510131 100644 --- a/users/tazjin/emacs/config/init.el +++ b/users/tazjin/emacs/config/init.el @@ -227,7 +227,8 @@ (use-package telega :bind (:map global-map ("s-t" . telega)) - :config (telega-mode-line-mode 1)) + :config (telega-mode-line-mode 1) + :custom (telega-emoji-use-images nil)) (use-package terraform-mode) (use-package toml-mode) |