diff options
| author | BardofSprites <[email protected]> | 2026-05-11 11:13:15 -0400 |
|---|---|---|
| committer | BardofSprites <[email protected]> | 2026-05-11 11:13:15 -0400 |
| commit | 6aec51d4ac5ac566776194336d3944e274abd216 (patch) | |
| tree | 3923261c696ea6551983f35d4376f601ead1f479 /config.org | |
| parent | 654bff4f21468df4bd6700fb425da782b1e34a5b (diff) | |
org crypt
Diffstat (limited to 'config.org')
| -rw-r--r-- | config.org | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -1289,6 +1289,7 @@ For a long time I really struggled with Emacs tab completion. It still only kind (require 'org) (require 'ox) (require 'org-habit) + (require 'org-crypt) #+end_src *** Main Configuration @@ -1346,6 +1347,14 @@ For a long time I really struggled with Emacs tab completion. It still only kind (setq org-ellipsis " ⤶") #+end_src +*** Encrypting org entries +#+begin_src emacs-lisp :tangle bard-emacs-modules/bard-emacs-org.el :mkdirp yes + (use-package org-crypt + :config + (setq org-crypt-key "[email protected]") + (org-crypt-use-before-save-magic)) +#+end_src + *** Making org mode look nice #+begin_src emacs-lisp :tangle bard-emacs-modules/bard-emacs-org.el :mkdirp yes (setq org-startup-indented t |
