Configurations
Table of Contents
1. What is this magic?
They're configurations for extremely obscure programs I use. Yeah, I know, I'm somewhat of a hipster myself. Also, this is kind of outdated, because I use my NixOS Configuration instead. Well, I still use the vanilla (not doom) emacs configuration.
1.1. Configurations
Here is a list of my configurations for various programs:
for f in *;
do
if [[ "$f" == "index.org" || "$f" == "README.org" || "$f" == "emacs.el" ]]; then
continue
fi
name="$(grep '^#+title:' "$f" | sed 's/^#+title:[[:space:]]*//')"
printf -- "- [[file:$f][$name]]\n"
done