Org Mode

When i started using Beancount with Emacs , i was looking for valid reasons to learn Emacs. Found about Org Mode, a tool for organising notes, todo lists and agenda items. When reading forum posts, found references to GTD which led to Org Roam .

In emacs the configuration information is maintained and loaded from init.el. The file contents can be listed in org mode for reference like below:

(defun my/doasedit ()
  (interactive)
  (if (buffer-file-name)
      (let ((cursor-pos (point))
            (truename (file-truename (buffer-file-name))))
        (find-alternate-file (concat "/doas::" truename))
        (goto-char cursor-pos))
    (message "This buffer is not visiting a file!")))

For more examples refer Preserve Formatting in Org Mode .


© Prabu Anand K 2020-2026