From 828397aebf7502324300aa1091d24810427a0089 Mon Sep 17 00:00:00 2001 From: oreodave Date: Mon, 4 Nov 2019 16:49:28 +0000 Subject: +function to open ~/School in dired Useful for reading school notes --- doom.d/config.org | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'doom.d/config.org') 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 -- cgit v1.2.3-13-gbd6f