summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2022-01-15 22:06:02 -0600
committerCase Duckworth2022-01-15 22:06:02 -0600
commit4362009bad43a6eb07151236ffa6c025047d5302 (patch)
tree1920da5265c60a590d06d285c2126e7c99684360
parentAdd web-mode (diff)
downloademacs-4362009bad43a6eb07151236ffa6c025047d5302.tar.gz
emacs-4362009bad43a6eb07151236ffa6c025047d5302.zip
Unignore private.el
-rw-r--r--.gitignore3
-rw-r--r--lisp/private.el19
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
11gnus/ 11gnus/
12old/ 12old/
13pkg/ 13pkg/
14private.el
15racket-mode/ 14racket-mode/
16server/ 15server/
17straight/ 16straight/
18transient/ 17transient/
19var/ \ No newline at end of file 18var/
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