#+title: Gists by bram85 #+PROPERTY: header-args :mkdirp yes #+begin_src org :tangle README.org Gists referred from [[https://emacs.ch/@bram85][@bram85@emacs.ch]]. #+end_src * Termux keys :PROPERTIES: :URL: https://emacs.ch/@bram85/109393570150138285 :END: Put this in ~/.termux/termux.properties for a better Emacs experience inside Termux. #+begin_src conf :tangle gists/termux-emacs-keys.conf extra-keys = [[ \ {key: ESC, popup: {macro: "CTRL g", display: "C-g"}}, \ {key: CTRL, popup: {macro: "CTRL x", display: "C-x"}}, \ {key: ALT, popup: {macro: "ALT x", display: "M-x"}}, \ {key: TAB}, \ {key: DEL, popup: {macro: "CTRL k", display: C-k}}, \ {key: LEFT, popup: HOME}, \ {key: DOWN, popup: PGDN}, \ {key: UP, popup: PGUP}, \ {key: RIGHT, popup: END} \ ]] #+end_src * Nesting with use-package :PROPERTIES: :URL: https://emacs.ch/@bram85/109393551314878399 :END: #+begin_src elisp :tangle gists/use-package-nesting.el (use-package foo) ;; only loads after foo has been loaded (use-package bar :after foo) #+end_src