diff options
author | oreodave <aryadevchavali1@gmail.com> | 2019-11-04 16:49:28 +0000 |
---|---|---|
committer | oreodave <aryadevchavali1@gmail.com> | 2019-11-04 16:49:28 +0000 |
commit | 828397aebf7502324300aa1091d24810427a0089 (patch) | |
tree | bdca34be53a8fe2832721bef2acfe067acc84336 | |
parent | c6f03ed86038927259099439b9dc8a9e23cab6ad (diff) | |
download | dotfiles-828397aebf7502324300aa1091d24810427a0089.tar.gz dotfiles-828397aebf7502324300aa1091d24810427a0089.tar.bz2 dotfiles-828397aebf7502324300aa1091d24810427a0089.zip |
+function to open ~/School in dired
Useful for reading school notes
-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 |