From 9b6da988ae9ca68d5fd2345445346d978dac1b92 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Thu, 20 Nov 2014 18:40:51 -0800 Subject: [PATCH] Auto gpg support. --- emacs_notes.org | 3 +++ init.el | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/emacs_notes.org b/emacs_notes.org index c79a6f27..130d8f28 100644 --- a/emacs_notes.org +++ b/emacs_notes.org @@ -32,3 +32,6 @@ Emacs Notes -*- mode: org -*- ** C-x C-k r to apply macro to all lines in region * <2014-11-14 Fri> ** C-x C-q to start dired write mode (C-x C-s to save changes.) +* <2014-11-20 Thu> +** C-c . inserts date +** C-c , tags priority diff --git a/init.el b/init.el index 71d0783a..56c2727e 100644 --- a/init.el +++ b/init.el @@ -257,6 +257,11 @@ :init (add-hook 'org-mode-hook (lambda () (linum-mode 0)))) +(use-package epg + :ensure t + :config + (epa-file-enable)) + ;; ============================================================================= ;; Programming Mode Hooks ;; =============================================================================