aboutsummaryrefslogtreecommitdiffstats
path: root/_spacemacs.d/config/aly-org-config.el
diff options
context:
space:
mode:
authorAaron LI <aaronly.me@gmail.com>2016-05-31 09:45:54 +0800
committerAaron LI <aaronly.me@gmail.com>2016-05-31 09:45:54 +0800
commit7f34247bdb3247573db05f7d9f28d5a79a0929be (patch)
treeb39f616f23394fe1c04ba557e2ff5bb6bb6c06e1 /_spacemacs.d/config/aly-org-config.el
parent788b5f290bb5be1ebf9d96aff792f54bf144d01f (diff)
downloaddotfiles-7f34247bdb3247573db05f7d9f28d5a79a0929be.tar.bz2
spacemacs: add simple aly-org-config.el
Diffstat (limited to '_spacemacs.d/config/aly-org-config.el')
-rw-r--r--_spacemacs.d/config/aly-org-config.el30
1 files changed, 30 insertions, 0 deletions
diff --git a/_spacemacs.d/config/aly-org-config.el b/_spacemacs.d/config/aly-org-config.el
new file mode 100644
index 0000000..cdb3937
--- /dev/null
+++ b/_spacemacs.d/config/aly-org-config.el
@@ -0,0 +1,30 @@
+;;; aly-org-config.el --- My configurations for org-mode
+;; -*- mode: emacs-lisp -*-
+;; vim: set ts=8 sw=2 tw=0 fenc=utf-8 ft=lisp:
+;;
+;; Aaron LI
+;; Created: 2016-05-31
+;; Updated: 2016-05-31
+;;
+
+;;; Commentary:
+;; My custom configurations for the `org' of spacemacs.
+;; https://github.com/syl20bnr/spacemacs/blob/master/layers/org/README.org
+;;
+
+;;; Code:
+
+;; NOTE:
+;; Spacemacs use the `org' from the ELPA instead of the one shipped with
+;; Emacs. Then, any `org'-related code should NOT be loaded before
+;; `dotspacemacs/user-config'.
+(with-eval-after-load 'org
+ (setq org-agenda-files '("~/org/todo.org"
+ "~/org/task.org"
+ "~/org/astro.org"))
+ ) ;; with-eval-after-load 'org
+
+
+(provide 'aly-org-config)
+
+;;; aly-org-config.el ends here