3.1 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.
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. Seems to have a bug on the Melpa version, so I'm keeping this to the HEAD
, but only if I've cloned it.
(when (file-exists-p "~/other/telega.el")
(use-package telega
:straight (:local-repo "~/other/telega.el")
:commands (telega)
:init
(setq telega-use-images nil)
:config
(ha-leader "a t" 'telega)))
For some reason, you need rainbow-identifiers to work, oh, I guess the docs state this.
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.
(when (f-directory? "~/other/rpgdm")
(use-package rpgdm
:straight (:local-repo "~/other/rpgdm")
:commands (rpgdm-mode rpgdm-tables-load)
:config (ha-leader "t D" '("rpg dm" . rpgdm-mode))))