summary refs log tree commit diff stats
path: root/lisp/private.el
blob: f9c4753d577015183e91399d8c5db39137a0a48a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
;;; 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