Unignore private.el

This commit is contained in:
Case Duckworth 2022-01-15 22:06:02 -06:00
parent 7f14098962
commit 4362009bad
2 changed files with 20 additions and 2 deletions

3
.gitignore vendored
View File

@ -11,9 +11,8 @@ feeds.txt
gnus/
old/
pkg/
private.el
racket-mode/
server/
straight/
transient/
var/
var/

19
lisp/private.el Normal file
View File

@ -0,0 +1,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