hamacs/ha-aux-apps.org
Howard Abrams 4d1f869f9d Add Twitter back into Emacs
Shame that I can't get Telega working at the moment.
2021-11-18 12:14:10 -08:00

2.5 KiB

Auxillary and Optional Applications

A literate programming file for helper apps in Emacs.

Introduction

The following applications are not really needed. I alternate between trying to stay in Emacs taking advantage of the consistent interface, and simply using a stand-alone app on my Workday computer.

Twitter

The venerable twittering-mode allows me to follow all the twits.

  (use-package twittering-mode
    :init
    (setq twittering-use-master-password t
          epa-pinentry-mode 'loopback)
    :config
    (defalias 'epa--decode-coding-string 'decode-coding-string))

Telega

I'm thinking the Telega package would be better than Bitlbee for Telegram communication.

(use-package telega
  :commands (telega)
  :defer t)

For some reason, you need rainbow-identifiers to work, oh, I guess the docs state this.

Note: Turning this off as it needs version 1.7.7 of tdlib, and that isn't easily available on my Mac. Maybe I may enable this on my Linux system.