emacs/lisp/private.el

24 lines
391 B
EmacsLisp
Raw Permalink 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/)
2022-06-08 22:59:53 +00:00
;; Load random private stuff
(require '_acdw)
2022-01-16 04:06:02 +00:00
(provide 'private)
;;; private.el ends here