From 3f495e25a7aef5e5e8350ed3690f8c2d4436dc73 Mon Sep 17 00:00:00 2001 From: Aaron LI Date: Tue, 23 Feb 2016 10:46:35 +0800 Subject: _emacs.d/personal: order configs by adding numeric prefix --- _emacs.d/personal/orgmode.el | 46 -------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 _emacs.d/personal/orgmode.el (limited to '_emacs.d/personal/orgmode.el') diff --git a/_emacs.d/personal/orgmode.el b/_emacs.d/personal/orgmode.el deleted file mode 100644 index 0d609e7..0000000 --- a/_emacs.d/personal/orgmode.el +++ /dev/null @@ -1,46 +0,0 @@ -;;; ~/.emacs.d/personal/orgmode.el --- Org-mode configurations -;; -;; -*- mode: emacs-lisp -*- -;; vim: set ts=8 sw=2 tw=0 fenc=utf-8 ft=lisp: -;; -;; Credit: -;; [1] http://www.john2x.com/emacs.html -;; -;; Aaron LI -;; 2016-02-21 -;; - -;;; Commentary: -;; Org-mode configurations for Emacs - -;;; Code: - -(setq org-directory "~/org") -(setq org-todo-keywords - '((sequence "TODO" "DOING" "WAITING" "LATER" "|" "DONE" "DELEGATED"))) -;; default notes file for `org-capture' -(setq org-default-notes-file (concat org-directory "/notes.org")) -;; set custom `org-capture' templates -(setq org-capture-templates - '(("t" "Todo" entry (file+headline (concat org-directory "/todo.org") "Other") - "* TODO %?\n %i\n %a") - ("n" "Note" entry (file+datetree (concat org-directory "/notes.org")) - "* %?\nEntered on %U\n %i\n %a"))) -;; add custom `org-agenda' to show: -;; * agenda for the week -;; * things currently working on -;; * list of remaining TODO items -(setq org-agenda-custom-commands - '(("z" "Agenda and Tasks" - ((agenda "") - (todo "DOING") - (todo "TODO"))))) -;; enable font-locking for org source blocks -(setq org-src-fontify-natively t) -;; do not evaulate source blocks when exporting -(setq org-export-babel-evaluate nil) -;; -(global-set-key "\C-ca" 'org-agenda) -(global-set-key "\C-cb" 'org-iswitchb) -(global-set-key "\C-cc" 'org-capture) -(global-set-key "\C-cl" 'org-store-link) -- cgit v1.2.2