hamacs/ha-aux-apps.org
Howard Abrams 87e2d4e292 Move stuff around
Needed to move the Terminal stuff over to remoting, as I don't include
the aux-apps in my Work-specific Emacs system. While I was at it, I
noticed some key conflicts with org, so fixed that too.
2022-01-06 15:36:39 -08:00

2.9 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.

RPG DM

Been working on a project for getting Emacs helping as a Dungeon Master's Assistant, and I must say, it is coming along nicely. In case you are reading this, let me know, and I'll start to share it.

  (use-package rpgdm
    :straight (:local-repo "~/other/rpgdm")
    :commands (rpgdm-mode rpgdm-tables-load)
    :config (ha-leader "t D" '("rpg dm" . rpgdm-mode)))