summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-08-12 17:58:51 -0500
committerCraig Jennings <c@cjennings.net>2025-08-12 17:58:51 -0500
commitcd8b7d9e5d66c65cca1525d31bc1a3ecc1007f8c (patch)
tree7c6c6acd99b21a51fc9b21380e9cfa13855f5edd /modules
parent41c2a58e4e4e3759628f656c2ba485402aabc76c (diff)
downloaddotemacs-cd8b7d9e5d66c65cca1525d31bc1a3ecc1007f8c.tar.gz
dotemacs-cd8b7d9e5d66c65cca1525d31bc1a3ecc1007f8c.zip
remove unused telegram-config.el
Diffstat (limited to 'modules')
-rw-r--r--modules/telegram-config.el48
1 files changed, 0 insertions, 48 deletions
diff --git a/modules/telegram-config.el b/modules/telegram-config.el
deleted file mode 100644
index 2de395fc..00000000
--- a/modules/telegram-config.el
+++ /dev/null
@@ -1,48 +0,0 @@
-;;; telegram-config.el --- Configuration for the Telegram Client -*- lexical-binding: t; -*-
-;; author: Craig Jennings <c@cjennings.net>
-;;; Commentary:
-
-;; Telegram Client Setup Notes
-
-;; 1. Pull latest telega-server image:
-;; $ docker pull zevlg/telega-server:latest
-
-;; 2. Set telega-use-docker to non-nil to connect to docker telega-server
-;; (setq telega-use-docker t)
-
-;; 3. Set telega-use-images to non-nil (for emacsclient)
-;; (setq telega-use-images t)
-
-;; 4. keybindings for telega only display if you bind the prefix-map for a list
-;; of default keys: https://zevlg.github.io/telega.el/#telega-prefix-map, so put
-;; this in your use-package declaration:
-;; :bind
-;; ("C-c T" . telega)
-
-;; 5. Set up docker image and tell Telega to use it.
-;; docker pull zevlg/telega-server:latest
-;; (setq telega-use-docker t)
-
-
-;;; Code:
-
-;; ----------------------------------- Telega ----------------------------------
-;; telegram client
-
-(use-package telega
- :defer 1
- :commands (telega)
- :init
- (define-key global-map (kbd "C-c t") telega-prefix-map)
- :bind
- ("C-c T" . telega)
- (:map telega-chat-button-map
- ("DEL" . telega-chat-delete))
- :custom
- (telega-use-images t)
- (telega-emoji-use-images t)
- :config
- (setq telega-use-docker t))
-
-(provide 'telegram-config)
-;;; telegram-config.el ends here.