summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2016-10-14 14:48:18 -0700
committerFranck Cuny <franck.cuny@gmail.com>2016-10-14 14:48:18 -0700
commit66aa9ca92d04ea12224830ab391d4b8f2375b188 (patch)
tree37c839e4ab3dd6c8fa21ecf08fa5e5b6f758d1a1
parent[emacs] Copy more environment variables. (diff)
downloademacs.d-66aa9ca92d04ea12224830ab391d4b8f2375b188.tar.gz
[emacs] Delete configuration for org-mode.
-rw-r--r--emacs.d/lib/org-settings.el43
1 files changed, 0 insertions, 43 deletions
diff --git a/emacs.d/lib/org-settings.el b/emacs.d/lib/org-settings.el
deleted file mode 100644
index 0893a59..0000000
--- a/emacs.d/lib/org-settings.el
+++ /dev/null
@@ -1,43 +0,0 @@
-(use-package org
- :bind (("C-c a" . org-agenda)
- ("C-c c" . org-capture)
- ("C-c o" . org-iswitchb))
-
- :config
- (progn
- (setq org-startup-indented t
- org-return-follows-link t
- org-blank-before-new-entry nil)
- (add-hook 'org-mode-hook (lambda ()
- (message "yup we're in the hook")
- (org-indent-mode t)
- (setq truncate-lines nil)))))
-
-(setq org-todo-keywords
- '((sequence "TODO" "IN-PROGRESS" "WAITING" "DONE")))
-
-(setq org-link-abbrev-alist
- '(("src" . "~/src/%s")
- ("jira" . "https://jira.twitter.biz/browse/%s")
- ("rb" . "https://reviewboard.twitter.biz/r/%s")
- ("go" . "http://go/%s")))
-
-(setq org-default-notes-file "~/src/notes/org/inbox.org")
-
-(setq org-agenda-files (list "~/src/notes/org/personal.org"
- "~/src/notes/org/work.org"
- "~/src/notes/org/inbox.org"))
-
-(setq org-capture-templates
- '(("t" "Todo" entry (file+headline "~/src/notes/org/inbox.org" "Tasks")
- "* TODO %?\n%a")
- ("j" "Journal" entry (file+datetree "~/src/notes/org/journal.org")
- "* %T\n%?")
- ("m" "Meeting" entry (file+headline "~/src/notes/org/inbox.org" "Meetings")
- "* %^{prompt} %U\n%?")))
-
-(setq org-refile-targets
- '(("~/src/notes/org/work.org" :maxlevel . 2)
- ("~/src/notes/org/personal.org" :maxlevel . 2)))
-
-(provide 'org-settings)