From cd8b7d9e5d66c65cca1525d31bc1a3ecc1007f8c Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Tue, 12 Aug 2025 17:58:51 -0500 Subject: remove unused telegram-config.el --- modules/telegram-config.el | 48 ---------------------------------------------- 1 file changed, 48 deletions(-) delete mode 100644 modules/telegram-config.el (limited to 'modules') 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 -;;; 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. -- cgit v1.2.3