e197dc5aba
After moving some environment variables out of `~/.profile` and into a `.envrc` file, I broke some of my modules because Emacs, which is started in `~/.xsessionrc.shared`, is started from outside of the `.envrc` scope. Thankfully someone wrote an excellent Emacs integration with `direnv` so now the world keeps turning and it is even more beautiful than it was previously.
73 lines
2.7 KiB
EmacsLisp
73 lines
2.7 KiB
EmacsLisp
;;; org.el --- My org preferences -*- lexical-binding: t -*-
|
|
;; Author: William Carroll <wpcarro@gmail.com>
|
|
|
|
;;; Commentary:
|
|
;; Hosts my org mode preferences
|
|
|
|
;;; Code:
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;; Dependencies
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
(require 'prelude)
|
|
(require 'f)
|
|
(require 'maybe)
|
|
|
|
(prelude/assert (and (maybe/some? (getenv "ORG_DIRECTORY"))
|
|
(f-exists? (getenv "ORG_DIRECTORY"))))
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;; Configuration
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; TODO: figure out how to nest this in (use-package org ...)
|
|
(setq org-capture-templates
|
|
`(("w" "work" entry (file+headline
|
|
,(f-join (getenv "ORG_DIRECTORY") "work.org")
|
|
"Tasks")
|
|
"* TODO %?")
|
|
("p" "personal" entry (file+headline
|
|
,(f-join (getenv "ORG_DIRECTORY") "personal.org")
|
|
"Tasks")
|
|
"* TODO %? ")
|
|
("i" "ideas" entry (file+headline
|
|
,(f-join (getenv "ORG_DIRECTORY") "ideas.org")
|
|
"Tasks")
|
|
"* %? ")
|
|
("s" "shopping list" entry (file+headline
|
|
,(f-join (getenv "ORG_DIRECTORY") "shopping.org")
|
|
"Items")
|
|
"* TODO %? ")))
|
|
|
|
(evil-set-initial-state 'org-mode 'normal)
|
|
|
|
(use-package org
|
|
:config
|
|
(general-add-hook 'org-mode-hook
|
|
;; TODO: consider supporting `(disable (list linum-mode company-mode))'
|
|
(list (disable linum-mode)
|
|
(disable company-mode)))
|
|
(general-define-key :prefix "C-c"
|
|
"l" #'org-store-link
|
|
"a" #'org-agenda
|
|
"c" #'org-capture)
|
|
(setq org-startup-folded nil)
|
|
(setq org-todo-keywords
|
|
'((sequence "TODO" "BLOCKED" "DONE")))
|
|
(setq org-default-notes-file (f-join (getenv "ORG_DIRECTORY") "notes.org"))
|
|
(setq org-agenda-files (list (f-join (getenv "ORG_DIRECTORY") "work.org")
|
|
(f-join (getenv "ORG_DIRECTORY") "personal.org")))
|
|
;; TODO: troubleshoot why `wpc/kbds-minor-mode', `wpc/ensure-kbds' aren't
|
|
;; enough to override the following KBDs. See this discussion for more context
|
|
;; on where the idea came from:
|
|
;; https://stackoverflow.com/questions/683425/globally-override-key-binding-in-emacs
|
|
(general-unbind 'normal org-mode-map "M-h" "M-j" "M-k" "M-l"))
|
|
|
|
(use-package org-bullets
|
|
:after (org)
|
|
:config
|
|
(general-add-hook 'org-mode-hook (enable org-bullets-mode)))
|
|
|
|
(provide 'wpc-org)
|
|
;;; wpc-org.el ends here
|