about summary refs log tree commit diff stats
path: root/lisp/private.el
diff options
context:
space:
mode:
authorCase Duckworth2022-10-18 12:08:21 -0500
committerCase Duckworth2022-10-18 12:08:21 -0500
commite5c025158ef6e383aa892ef88e63a2a32de3d7fb (patch)
tree6b4d99fe810791f273330f56b5686cff8e53bb56 /lisp/private.el
parentAutoload magit (diff)
downloademacs-e5c025158ef6e383aa892ef88e63a2a32de3d7fb.tar.gz
emacs-e5c025158ef6e383aa892ef88e63a2a32de3d7fb.zip
Add a bunch of other stuff or whatever
Diffstat (limited to 'lisp/private.el')
-rw-r--r--lisp/private.el23
1 files changed, 23 insertions, 0 deletions
diff --git a/lisp/private.el b/lisp/private.el new file mode 100644 index 0000000..4f6115e --- /dev/null +++ b/lisp/private.el
@@ -0,0 +1,23 @@
1;;; private.el -*- lexical-binding: t; -*-
2
3;;; Commentary:
4
5;;; Code:
6
7(require 'acdw)
8
9(defgroup private nil
10 "Private things are private. Shhhhh....")
11
12;; Private directory
13
14(+define-dir private/ (sync/ "emacs/private")
15 "Private secretive secrets inside.")
16(add-to-list 'load-path private/)
17
18;; Load random private stuff
19
20(require '_acdw)
21
22(provide 'private)
23;;; private.el ends here