57366f385a
* Added muse * Added graphviz-dot-mode * Remove all trailing whitespace on save. This is the last commit I'm going to do before throwing it all away again.
38 lines
1.4 KiB
EmacsLisp
38 lines
1.4 KiB
EmacsLisp
(require 'org-crypt)
|
|
|
|
(setq org-todo-keywords '((sequence "TODO(t)"
|
|
"IN PROGRESS(p)"
|
|
"WAITING(w@/!)"
|
|
"|"
|
|
"DONE(d!/!)"
|
|
"CANCELLED(c@/!)")))
|
|
(setq org-ditaa-jar-path "/usr/share/java/ditaa/ditaa-0_9.jar")
|
|
(setq org-babel-load-languages '((ditaa . t)))
|
|
(setq org-confirm-babel-evaluate nil)
|
|
(setq org-tags-exclude-from-inheritance '("crypt"))
|
|
(setq org-crypt-key "33E8CC1CC4")
|
|
; GPG key used for encryption
|
|
(setq org-use-fast-todo-selection t)
|
|
(setq org-default-notes-file (concat org-directory "/notes.org"))
|
|
(setq org-refile-targets '((org-agenda-files :maxlevel . 5)
|
|
(nil :maxlevel . 5)))
|
|
(setq org-outline-path-complete-in-steps t)
|
|
|
|
(setq org-todo-keyword-faces
|
|
'(("TODO" :foreground "red" :weight bold)
|
|
("IN PROGRESS" :foreground "yellow" :weight bold)
|
|
("DONE" :foreground "forest green" :weight bold)
|
|
("WAITING" :foreground "orange" :weight bold)
|
|
("CANCELLED" :foreground "orangered" :weight bold)))
|
|
|
|
(global-set-key "\C-cl" 'org-store-link)
|
|
(global-set-key "\C-cc" 'org-capture)
|
|
(global-set-key "\C-ca" 'org-agenda)
|
|
|
|
;; Encrypt all entries before saving
|
|
(org-crypt-use-before-save-magic)
|
|
|
|
(add-hook 'org-mode-hook
|
|
(lambda ()
|
|
(flyspell-mode 1)
|
|
(auto-fill-mode 1)))
|