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 | |
parent | Add web-mode (diff) | |
download | emacs-4362009bad43a6eb07151236ffa6c025047d5302.tar.gz emacs-4362009bad43a6eb07151236ffa6c025047d5302.zip |
Unignore private.el
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | lisp/private.el | 19 |
2 files changed, 20 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore index 8cd1895..f5fdb7e 100644 --- a/.gitignore +++ b/.gitignore | |||
@@ -11,9 +11,8 @@ feeds.txt | |||
11 | gnus/ | 11 | gnus/ |
12 | old/ | 12 | old/ |
13 | pkg/ | 13 | pkg/ |
14 | private.el | ||
15 | racket-mode/ | 14 | racket-mode/ |
16 | server/ | 15 | server/ |
17 | straight/ | 16 | straight/ |
18 | transient/ | 17 | transient/ |
19 | var/ \ No newline at end of file | 18 | var/ |
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 | ||