blob: 3310d530de24a0a2078751f3377c3f0d9e1a84f7 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
|
;;; telegaConfig.el -*- lexical-binding: t; -*-
(require 'telega)
(map! :leader
(:prefix-map ("T" . "Telegram")
:desc "Home" "h" #'telega
:desc "Call" "c" #'telega-chat-call
:desc "Discard call" "d" #'telega-voip-discard
:desc "Voice message" "v" #'telega-chatbuf-attach-voice-note
))
|