blob: 4f6115ebe8c8393eb01aff4adf0423ee59cb3f44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
;;; 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
|