Things to do

Emacs configuration

  • Default to auto-fill-mode and flyspell-mode in .emacs. done

  • Indent should never use tabs. done

  • global-set-key org-time-stamp-inactive C-c ! or something done

(setq-default auto-fill-function 'do-auto-fill)
(add-hook 'text-mode-hook 'flyspell-mode)
(add-hook 'prog-mode-hook 'flyspell-prog-mode)
(global-set-key (kbd "C-c !") 'org-time-stamp-inactive)
  • Notes about fetching markdown-mode for computers where I don't yet have it.

    This was actually simpler than I had realized. The markdown-mode website, https://jblevins.org/projects/markdown-mode/, is where I learned about M-x package-install. The future is package managers, and that future is today.

Shell configuration

  • Let venv_activate look in the current directory if there's no argument but a .venv/ in the current folder?

Nikola configuration

  • Python plotting in nikola
  • Publish nikola blog to a secret URL at http://mahurin.us.
  • Format blockquotes like text, not like artistic pullquotes.