> ## Documentation Index
> Fetch the complete documentation index at: https://docs.jylhis.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Inspiration & Resources

> Links to Emacs builds, Nix resources, and related projects

## Emacs

Source: git://git.sv.gnu.org/emacs.git

## Linux

* [https://github.com/NixOS/nixpkgs/tree/master/pkgs/applications/editors](https://github.com/NixOS/nixpkgs/tree/master/pkgs/applications/editors)
* [https://github.com/nix-community/emacs-overlay](https://github.com/nix-community/emacs-overlay)

## MacOS

* [https://github.com/d12frosted/homebrew-emacs-plus](https://github.com/d12frosted/homebrew-emacs-plus)
* [https://github.com/caldwell/build-emacs/tree/master](https://github.com/caldwell/build-emacs/tree/master)
* [https://github.com/sban/emacs](https://github.com/sban/emacs)

## Android

* [https://mstempl.netlify.app/post/emacs-on-android/](https://mstempl.netlify.app/post/emacs-on-android/)
* [https://github.com/nix-community/nix-on-droid/tree/master/pkgs](https://github.com/nix-community/nix-on-droid/tree/master/pkgs)
* [https://www.gnu.org/software/emacs/manual/html\_node/emacs/Android.html](https://www.gnu.org/software/emacs/manual/html_node/emacs/Android.html)
* [https://f-droid.org/packages/org.gnu.emacs/](https://f-droid.org/packages/org.gnu.emacs/)
* [https://sourceforge.net/projects/android-ports-for-gnu-emacs/files/](https://sourceforge.net/projects/android-ports-for-gnu-emacs/files/)
* [https://github.com/mariusk/android-with-emacs](https://github.com/mariusk/android-with-emacs)
* [https://github.com/zakkak/android-emacs-toolkit](https://github.com/zakkak/android-emacs-toolkit)

## Nix

* [https://wiki.nixos.org/wiki/Emacs](https://wiki.nixos.org/wiki/Emacs)

## Keybindings — considered and not adopted

* [general.el to conquer Emacs keybindings](https://bicycleforyourmind.com/generaldotel-to-conquer-emacs-keybindings) — argues for a leader-key system built on [`general.el`](https://github.com/noctuid/general.el). Researched against the built-in alternatives and **rejected** for Jotain: `general.el`'s primary differentiator is `:states` for evil-mode integration, which Jotain does not use. Emacs 30's `keymap-set`, built-in `which-key`, and use-package `:bind` already cover the article's discoverability and leader-key goals without a new dependency. The article's spirit — memorable, categorised, self-documenting prefixes — is instead realised through `which-key-add-key-based-replacements` registered in `init-keys.el`, with the per-package bindings staying colocated with their `use-package` blocks. See [Keybindings](/keybindings) for the resulting namespace map.
