org-gpg
This commit is contained in:
parent
7c80731cd1
commit
424801914c
1 changed files with 18 additions and 1 deletions
|
@ -38,7 +38,7 @@
|
|||
("melpa" . "https://melpa.org/packages/")
|
||||
("org" . "https://orgmode.org/elpa/")))
|
||||
'(package-selected-packages
|
||||
'(tree-sitter-langs tree-sitter centaur-tabs dashboard page-break-lines clipetty wakatime-mode super-save ox-pandoc evil-surround evil-collection undo-tree toc-org evil-org org-plus-contrib evil-goggles evil-expat evil-commentary auto-package-update lispy smartparens which-key git-gutter rainbow-delimiters auto-complete-distel auto-complete evil magit evil-magit))
|
||||
'(org-crypt tree-sitter-langs tree-sitter centaur-tabs dashboard page-break-lines clipetty wakatime-mode super-save ox-pandoc evil-surround evil-collection undo-tree toc-org evil-org org-plus-contrib evil-goggles evil-expat evil-commentary auto-package-update lispy smartparens which-key git-gutter rainbow-delimiters auto-complete-distel auto-complete evil magit evil-magit))
|
||||
'(undo-tree-auto-save-history t)
|
||||
'(undo-tree-history-directory-alist '(("." . "~/.undohist-emacs")))
|
||||
'(undo-tree-visualizer-diff t)
|
||||
|
@ -240,6 +240,23 @@
|
|||
(evil-define-key 'normal 'global (kbd "g [") 'org-open-at-point)
|
||||
)
|
||||
|
||||
(use-package epa-file
|
||||
:ensure nil
|
||||
:config
|
||||
(setq epa-file-encrypt-to '("anthony@anthonycicchetti.com"))
|
||||
:custom
|
||||
(epa-file-select-keys 'silent))
|
||||
|
||||
(use-package org-crypt
|
||||
:ensure nil ;; included with org-mode
|
||||
:after org
|
||||
:config
|
||||
(org-crypt-use-before-save-magic)
|
||||
(setq org-tags-exclude-from-inheritance (quote ("crypt")))
|
||||
:custom
|
||||
(org-crypt-key "anthony@anthonycicchetti.com"))
|
||||
|
||||
|
||||
(use-package toc-org
|
||||
:after (org)
|
||||
:config
|
||||
|
|
Loading…
Add table
Reference in a new issue