75 lines
3 KiB
Org Mode
75 lines
3 KiB
Org Mode
#+TITLE: Auxillary and Optional Applications
|
|
#+AUTHOR: Howard X. Abrams
|
|
#+DATE: 2021-11-18
|
|
#+FILETAGS: :emacs:
|
|
|
|
A literate programming file for helper apps in Emacs.
|
|
|
|
#+BEGIN_SRC emacs-lisp :exports none
|
|
;;; ha-aux-apps.el --- A literate programming file for helper apps in Emacs. -*- lexical-binding: t; -*-
|
|
;;
|
|
;; Copyright (C) 2021 Howard X. Abrams
|
|
;;
|
|
;; Author: Howard X. Abrams <http://gitlab.com/howardabrams>
|
|
;; Maintainer: Howard X. Abrams
|
|
;; Created: November 18, 2021
|
|
;;
|
|
;; This file is not part of GNU Emacs.
|
|
;;
|
|
;; *NB:* Do not edit this file. Instead, edit the original literate file at:
|
|
;; ~/other/hamacs/ha-aux-apps.org
|
|
;; And tangle the file to recreate this one.
|
|
;;
|
|
;;; Code:
|
|
#+END_SRC
|
|
* 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 [[https://github.com/hayamiz/twittering-mode/tree/master][twittering-mode]] allows me to follow all the twits.
|
|
#+BEGIN_SRC emacs-lisp
|
|
(use-package twittering-mode
|
|
:init
|
|
(setq twittering-use-master-password t
|
|
epa-pinentry-mode 'loopback)
|
|
:config
|
|
(defalias 'epa--decode-coding-string 'decode-coding-string))
|
|
#+END_SRC
|
|
* Telega
|
|
I'm thinking the [[https://zevlg.github.io/telega.el/][Telega package]] would be better than Bitlbee for Telegram communication.
|
|
|
|
#+BEGIN_SRC emacs-lisp :tangle no
|
|
(use-package telega
|
|
:commands (telega)
|
|
:defer t)
|
|
#+END_SRC
|
|
For some reason, you need [[https://github.com/Fanael/rainbow-identifiers][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.
|
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
(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))))
|
|
#+END_SRC
|
|
* Technical Artifacts :noexport:
|
|
Let's =provide= a name so we can =require= this file:
|
|
|
|
#+BEGIN_SRC emacs-lisp :exports none
|
|
(provide 'ha-aux-apps)
|
|
;;; ha-aux-apps.el ends here
|
|
#+END_SRC
|
|
|
|
#+DESCRIPTION: A literate programming file for helper apps in Emacs.
|
|
|
|
#+PROPERTY: header-args:sh :tangle no
|
|
#+PROPERTY: header-args:emacs-lisp :tangle yes
|
|
#+PROPERTY: header-args :results none :eval no-export :comments no mkdirp yes
|
|
|
|
#+OPTIONS: num:nil toc:nil todo:nil tasks:nil tags:nil date:nil
|
|
#+OPTIONS: skip:nil author:nil email:nil creator:nil timestamp:nil
|
|
#+INFOJS_OPT: view:nil toc:nil ltoc:t mouse:underline buttons:0 path:http://orgmode.org/org-info.js
|