+goto-dotfiles function

Code cleanliness
This commit is contained in:
AChavali
2020-03-02 23:14:51 +00:00
parent 84755d4e42
commit 5ee6c267a9
2 changed files with 16 additions and 2 deletions

View File

@@ -64,3 +64,13 @@ Function to quickly check weather, which is what I wanted wttrin for.
(interactive)
(wttrin (oreodave/password-store/get-password "location")))
#+END_SRC
* Go to dotfiles
A better version of 'goto private directory' which actually goes to my Dot files
directory overall.
#+BEGIN_SRC elisp
(defun oreodave/goto-dotfiles ()
"Go to the dotfiles directory"
(interactive)
(doom-project-find-file "~/Dotfiles"))
#+END_SRC