diff options
author | Case Duckworth | 2022-01-15 22:06:02 -0600 |
---|---|---|
committer | Case Duckworth | 2022-01-15 22:06:02 -0600 |
commit | 4362009bad43a6eb07151236ffa6c025047d5302 (patch) | |
tree | 1920da5265c60a590d06d285c2126e7c99684360 /lisp | |
parent | Add web-mode (diff) | |
download | emacs-4362009bad43a6eb07151236ffa6c025047d5302.tar.gz emacs-4362009bad43a6eb07151236ffa6c025047d5302.zip |
Unignore private.el
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/private.el | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lisp/private.el b/lisp/private.el new file mode 100644 index 0000000..f9c4753 --- /dev/null +++ b/lisp/private.el | |||
@@ -0,0 +1,19 @@ | |||
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 | (provide 'private) | ||
19 | ;;; private.el ends here | ||