about summary refs log blame commit diff stats
path: root/.emacs.d/lisp/init-org.el
blob: a1ae5c48c401b8dc7eab892007ac8429045f2375 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11






                                                                         



                        












                                                          
;;; 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)
  (org-special-ctrl-k t)
  (org-special-ctrl-a 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