diff options
author | Aaron LI <aaronly.me@gmail.com> | 2016-05-31 09:45:54 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@gmail.com> | 2016-05-31 09:45:54 +0800 |
commit | 7f34247bdb3247573db05f7d9f28d5a79a0929be (patch) | |
tree | b39f616f23394fe1c04ba557e2ff5bb6bb6c06e1 /_spacemacs.d | |
parent | 788b5f290bb5be1ebf9d96aff792f54bf144d01f (diff) | |
download | dotfiles-7f34247bdb3247573db05f7d9f28d5a79a0929be.tar.bz2 |
spacemacs: add simple aly-org-config.el
Diffstat (limited to '_spacemacs.d')
-rw-r--r-- | _spacemacs.d/config/aly-mu4e-config.el | 9 | ||||
-rw-r--r-- | _spacemacs.d/config/aly-org-config.el | 30 |
2 files changed, 37 insertions, 2 deletions
diff --git a/_spacemacs.d/config/aly-mu4e-config.el b/_spacemacs.d/config/aly-mu4e-config.el index 96d8cdc..e0e9b37 100644 --- a/_spacemacs.d/config/aly-mu4e-config.el +++ b/_spacemacs.d/config/aly-mu4e-config.el @@ -214,11 +214,16 @@ ;; customize bookmarks (setq mu4e-bookmarks '(("flag:unread AND NOT flag:trashed" "Unread messages" ?u) - ("date:today..now" "Today's messages" ?t) + ("date:today..now" "Today's messages" ?T) ("date:7d..now" "Last 7 days" ?w) ("flag:flagged" "Flagged messages" ?f) + ("tag:todo OR tag:task" "TODO & Task" ?t) + ("tag:work" "Work" ?W) ("tag:astro" "Astro" ?a) - ("tag:arxiv" "arXiv" ?x) + ("tag:arxiv OR from:arxiv.org" "arXiv" ?x) + ("tag:SMS" "SMS" ?S) + ("tag:CallLog" "Call Log" ?C) + ("flag:trashed OR tag:\\\\Trash" "Deleted" ?d) ("mime:image/*" "Messages with images" ?p))) ;; headers list appearance 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 |