summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--init.el1
-rw-r--r--lisp/init-org.el6
2 files changed, 7 insertions, 0 deletions
diff --git a/init.el b/init.el
index abca017..adcb3a0 100644
--- a/init.el
+++ b/init.el
@@ -34,6 +34,7 @@
(require 'init-imenu)
(require 'init-tramp)
(require 'init-flycheck)
+(require 'init-org)
;; local settings (optional)
(require 'init-local nil t)
diff --git a/lisp/init-org.el b/lisp/init-org.el
new file mode 100644
index 0000000..1f7a590
--- /dev/null
+++ b/lisp/init-org.el
@@ -0,0 +1,6 @@
+(use-package org
+ :ensure nil ;; package is bundled with emacs
+ :init
+ (setq org-archive-location "::* Archived Tasks"))
+
+(provide 'init-org)