about summary refs log tree commit diff stats
path: root/.emacs.d
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2021-09-04 16:08:33 +0100
committerDavid Morgan <djm_uk@protonmail.com>2021-09-04 16:08:33 +0100
commit7cc0ecb3cf91ccc3aa0a13a0f8bd2ba55e96547d (patch)
treeb0f721a2979a82e04bbd80da47efbbad4d24db26 /.emacs.d
parent5ed427cbd3d8e12ade9bb97b1c510bff84816f57 (diff)
downloaddotfiles-7cc0ecb3cf91ccc3aa0a13a0f8bd2ba55e96547d.tar.gz
Enable special org-mode versions of C-k, C-a and C-e
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/lisp/init-org.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/.emacs.d/lisp/init-org.el b/.emacs.d/lisp/init-org.el
index 3af62fd..a1ae5c4 100644
--- a/.emacs.d/lisp/init-org.el
+++ b/.emacs.d/lisp/init-org.el
@@ -5,7 +5,10 @@
 
 (use-package org
   :ensure nil
-  :custom (org-log-done t)
+  :custom
+  (org-log-done t)
+  (org-special-ctrl-k t)
+  (org-special-ctrl-a t)
   :config
   (add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode))
   :bind