emacs/lisp/private.el

20 lines
343 B
EmacsLisp
Raw Normal View History

2022-01-16 04:06:02 +00:00
;;; private.el -*- lexical-binding: t; -*-
;;; Commentary:
;;; Code:
(require 'acdw)
(defgroup private nil
"Private things are private. Shhhhh....")
;; Private directory
(+define-dir private/ (sync/ "emacs/private")
"Private secretive secrets inside.")
(add-to-list 'load-path private/)
(provide 'private)
;;; private.el ends here