diff options
| author | Blaise Thompson <blaise@untzag.com> | 2020-06-14 08:50:13 -0500 | 
|---|---|---|
| committer | Blaise Thompson <blaise@untzag.com> | 2020-06-14 08:50:13 -0500 | 
| commit | b027c839237d77588ea1806175b46737afd5e8aa (patch) | |
| tree | fcabedee79fc3999b85d4ba5eca30bf122543fe0 | |
| parent | afc30fc1f5dc5fbfe5691bb9b4d64d925d69e835 (diff) | |
2020-06-14 08:50
| -rw-r--r-- | emacs/init.el | 14 | 
1 files changed, 13 insertions, 1 deletions
| diff --git a/emacs/init.el b/emacs/init.el index 9a50003..cbf1d1c 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -13,9 +13,21 @@   '(org-agenda-files     (quote      ("/home/blaise/org/agenda.org" "/home/blaise/org/anniversaries.org" "/home/blaise/org/repeat.org" "/home/blaise/org/todo.org" "/home/blaise/org/projects/"))) + '(org-capture-templates +   (quote +    (("c" "Contact" entry +      (file "~/org/contacts.org") +      "* %(org-contacts-template-name) +:PROPERTIES: +:ADDRESS: +:EMAIL: +:PHONE: +:NOTE: +:END:" :empty-lines 0)))) + '(org-contacts-files (quote ("~/org/contacts.org")))   '(package-selected-packages     (quote -    (exec-path-from-shell ledger-mode evil-ledger ## ledger-import treemacs-evil treemacs avy move-text es-lib helm-flyspell flycheck which-key helm-swoop evil-leader helm spaceline evil use-package))) +    (magit exec-path-from-shell ledger-mode evil-ledger ## ledger-import treemacs-evil treemacs avy move-text es-lib helm-flyspell flycheck which-key helm-swoop evil-leader helm spaceline evil use-package)))   '(send-mail-function (quote sendmail-send-it)))  (custom-set-faces   ;; custom-set-faces was added by Custom. | 
