emacs/lisp/private.el

24 lines
391 B
EmacsLisp

;;; 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/)
;; Load random private stuff
(require '_acdw)
(provide 'private)
;;; private.el ends here