diff options
author | Vincent Ambo <mail@tazj.in> | 2021-08-16T15·04+0300 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2021-08-16T15·27+0000 |
commit | 206f96fbed81c3ae5d7afc72e0807a85ff1cfea2 (patch) | |
tree | 61643dd991d929d16a739262ae4359f2133538c5 /users/tazjin | |
parent | cd39bebbdaa1fdc5685feddc418b69cd2d97e9e1 (diff) |
fix(tazjin/emacs): Temporarily unbind key for telega r/2745
Telega keeps getting loaded with old sources, the origin of which I can not figure out, and which are not compatible with my Emacs anymore. This means that opening Telega essentially breaks the active Emacs until the telega process is killed. Until I have time to properly sit down and debug where Nix decides to get an old version of telega from (building the package directly from a Nix REPL yields the expected one), I'll disable it to avoid accidentally breaking my Emacs via muscle-memory. Change-Id: I937ac3a2b208c08fa0ef0b6e3e201526baa3a522 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3367 Reviewed-by: tazjin <mail@tazj.in> Tested-by: BuildkiteCI
Diffstat (limited to 'users/tazjin')
-rw-r--r-- | users/tazjin/emacs/config/init.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/users/tazjin/emacs/config/init.el b/users/tazjin/emacs/config/init.el index ec9f3deae5dc..1db31c71f526 100644 --- a/users/tazjin/emacs/config/init.el +++ b/users/tazjin/emacs/config/init.el @@ -205,7 +205,7 @@ (setq common-lisp-hyperspec-root "file:///home/tazjin/docs/lisp/")) (use-package telega - :bind (:map global-map ("s-t" . telega)) + ;; :bind (:map global-map ("s-t" . telega)) :config (telega-mode-line-mode 1) (add-hook 'telega-msg-ignore-predicates 'telega-msg-from-blocked-sender-p)) |