about summary refs log tree commit diff stats
path: root/.emacs.d/lisp/init-org.el
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2021-08-17 12:49:19 +0100
committerDavid Morgan <djm_uk@protonmail.com>2021-08-17 12:49:19 +0100
commitd0db5660caa836755ea8c99471d816484ea9e837 (patch)
treec7d0456a58e450abaf34b489b0b31c58ddbc8557 /.emacs.d/lisp/init-org.el
parentc92b18514728245850d31531ce224a74eddfc5a6 (diff)
downloaddotfiles-d0db5660caa836755ea8c99471d816484ea9e837.tar.gz
Add new .emacs.d
Diffstat (limited to '.emacs.d/lisp/init-org.el')
-rw-r--r--.emacs.d/lisp/init-org.el21
1 files changed, 21 insertions, 0 deletions
diff --git a/.emacs.d/lisp/init-org.el b/.emacs.d/lisp/init-org.el
new file mode 100644
index 0000000..3af62fd
--- /dev/null
+++ b/.emacs.d/lisp/init-org.el
@@ -0,0 +1,21 @@
+;;; init-ui.el --- Org-Mode Configuration File -*- lexical-binding: t -*-
+;;; Commentary:
+;; Some parts copied from prelude-org.el
+;;; Code:
+
+(use-package org
+  :ensure nil
+  :custom (org-log-done t)
+  :config
+  (add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode))
+  :bind
+  ("C-c l" . org-store-link)
+  ("C-c a" . org-agenda)
+  ("C-c b" . org-switchb)
+  ;; TODO bindings
+  ;("C-c r" . org-refile)
+  ;("C-c c" . org-capture)
+  )
+
+(provide 'init-org)
+;;; init-org.el ends here