User:Accraze/Tools/Doom Emacs

From Wikitech

Doom Emacs

Notes about installing Doom Emacs on Ubuntu Linux. I also have a configuration guide outlined as well: User:Accraze/Tools/Doom_Emacs/Configuration

Install

First install emacs using apt-get:

sudo apt-get install emacs

Then install the doom configs:

git clone --depth 1 https://github.com/hlissner/doom-emacs ~/.emacs.d
~/.emacs.d/bin/doom install

Org-mode

org-refile bug

Org-refile should refile the subtree If you see

   Invalid function: org-preserve-local-variables”

Then do the following:

  • delete all org-mode .elc files
 `find ~/.emacs.d/.local/straight/build-org\*.elc -print0 | xargs -0 rm`
  • Run
  doom build

Links