2018-02-14 23:18:10 -05:00
|
|
|
;;; config/private/autoload.el -*- lexical-binding: t; -*-
|
|
|
|
|
2018-03-01 04:08:29 -05:00
|
|
|
;;;###autoload
|
|
|
|
(defun +private/find-in-config ()
|
|
|
|
"Open a file somewhere in `+private-config-path' via a fuzzy filename search."
|
|
|
|
(interactive)
|
|
|
|
(doom-project-find-file +private-config-path))
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun +private/browse-config ()
|
|
|
|
"Browse the files in `+private-config-path'."
|
|
|
|
(interactive)
|
|
|
|
(doom-project-browse +private-config-path))
|