diff options
Diffstat (limited to 'doom.d/config.org')
-rw-r--r-- | doom.d/config.org | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doom.d/config.org b/doom.d/config.org index 02f8ea5..d1728e5 100644 --- a/doom.d/config.org +++ b/doom.d/config.org @@ -62,6 +62,13 @@ doom private directory. (dired (concat org-directory "/Books"))) #+END_SRC Open a Dired session to the books directory in the org-directory. +** Go to School directory +#+BEGIN_SRC elisp +(defun oreodave/goto-school () + "Goto the school directory" + (interactive) + (dired (expand-file-name "~/School"))) +#+END_SRC ** Hook for font ligatures #+BEGIN_SRC elisp (add-hook 'after-make-frame-functions |