summaryrefslogtreecommitdiff
path: root/.emacs.d/modules/thanos-chat.el
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2023-12-09 10:51:44 +0200
committerThanos Apollo <[email protected]>2023-12-09 10:56:59 +0200
commita5fef6324be38541e28bbf154f321cfa9087d1b1 (patch)
tree4b8d5fc594497bc36ae8b287de89343dc0d9534b /.emacs.d/modules/thanos-chat.el
parentf74354ae3d2912686b87d20426d8155865939306 (diff)
emacs: Rewrite thanos/applications-map
- Use defvar-keymap - Rewrite it on thanos-commands.el
Diffstat (limited to '.emacs.d/modules/thanos-chat.el')
-rw-r--r--.emacs.d/modules/thanos-chat.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/.emacs.d/modules/thanos-chat.el b/.emacs.d/modules/thanos-chat.el
index e880ee4..b4b6512 100644
--- a/.emacs.d/modules/thanos-chat.el
+++ b/.emacs.d/modules/thanos-chat.el
@@ -41,6 +41,7 @@
(define-key thanos/applications-map (kbd "M-e") 'ement-login)
;;; Code:
+;; ERC
(require 'erc)
(setf erc-modules
@@ -56,12 +57,11 @@
:user "thanosapollo"
:password (password-store-get "liberachat/thanos_apollo")))
-(define-key thanos/applications-map (kbd "i") 'erc-libera)
+;; Telega
(require 'telega)
(add-hook 'telega-root-mode-hook 'emojify-mode)
(add-hook 'telega-chat-mode-hook 'emojify-mode)
-
(provide 'thanos-chat)
;;; thanos-chat.el ends here