;;; orgconfig.el --- Configuration for org-mode. ;;; Commentary: ;; Configuration for org-mode. ;;; Code: (require 'org) (require 'org-capture) ;; Templates for org-mode (require 'org-tempo) (setq org-hide-emphasis-markers t) (setq org-adapt-indentation nil) (setq org-confirm-babel-evaluate nil) (setq org-export-use-babel nil) (setq org-agenda-include-diary t) (setq org-src-preserve-indentation t) ;; Enable Racket in Org-mode Babel (org-babel-do-load-languages 'org-babel-load-languages '((racket . t) (python . t) (java . t))) (setcar (nthcdr 4 org-emphasis-regexp-components) 20) (org-set-emph-re 'org-emphasis-regexp-components org-emphasis-regexp-components) (setq org-agenda-files '("~/org/inbox.org" "~/org/gtd.org" "~/org/tickler.org")) (setq org-capture-templates '(("t" "Todo [inbox]" entry (file+headline "~/org/inbox.org" "Tasks") "* TODO %i%?") ("T" "Tickler" entry (file+headline "~/org/tickler.org" "Tickler") "* %i%? \n %U"))) (setq org-refile-targets '(("~/org/gtd.org" :maxlevel . 3) ("~/org/someday.org" :level . 1) ("~/org/tickler.org" :maxlevel . 2))) (keymap-global-set "C-c a" #'org-agenda) (keymap-global-set "C-c c" #'org-capture) (setq org-todo-keywords '((sequence "TODO(t)" "WAITING(w)" "|" "DONE(d)" "CANCELLED(c)"))) (defmacro η (fnc) "Return function that ignores its arguments and invokes FNC." `(lambda (&rest _rest) (funcall ,fnc))) ;; Auto-save org buffers (advice-add 'org-deadline :after (η #'org-save-all-org-buffers)) (advice-add 'org-schedule :after (η #'org-save-all-org-buffers)) (advice-add 'org-store-log-note :after (η #'org-save-all-org-buffers)) (advice-add 'org-todo :after (η #'org-save-all-org-buffers)) (advice-add 'org-refile :after (η #'org-save-all-org-buffers)) (advice-add 'org-sort :after (η #'org-save-all-org-buffers)) ;; Org hooks (add-hook 'org-mode-hook (lambda () (modify-syntax-entry ?< ".") (modify-syntax-entry ?> "."))) (add-hook 'org-agenda-mode-hook (lambda () (add-hook 'auto-save-hook 'org-save-all-org-buffers nil t) (auto-save-mode))) (add-hook 'org-mode-hook #'olivetti-mode) (add-hook 'org-mode-hook #'org-modern-mode) (add-hook 'org-mode-hook #'org-recur-mode) (add-hook 'org-mode-hook #'variable-pitch-mode) (add-hook 'org-agenda-mode-hook #'org-recur-mode) (add-hook 'org-mode-hook #'org-modern-indent-mode 90) (add-hook 'org-agenda-finalize-hook #'org-modern-agenda) ;; Diary-syncing functionality (defun pull-diary () "Syncs the calendars directory and imports the calendars into the diary." (interactive) ;; Sync the calendars directory (let ((default-directory (expand-file-name "~/.calendars/"))) (shell-command "./sync")) ;; Import the calendars into the diary (let* ((diary-file-name (expand-file-name "~/.emacs.d/diary")) (calendar-dir (expand-file-name "~/.calendars/")) (calendar-file-suffix ".ics") (calendar-file? (lambda (f) (s-suffix? calendar-file-suffix f))) (calendar-dir-files (directory-files calendar-dir)) (calendar-names (-filter calendar-file? calendar-dir-files)) (calendar-files (-map (lambda (f) (expand-file-name f calendar-dir)) calendar-names))) (find-file diary-file-name) (delete-region (point-min) (point-max)) (save-buffer) (kill-buffer) (-map (lambda (f) (find-file f) (icalendar-import-buffer diary-file-name t nil) (kill-buffer)) calendar-files) (find-file diary-file-name) (delete-duplicate-lines (point-min) (point-max)) (save-buffer) (kill-buffer))) ;; Theme (custom-set-faces '(org-document-info ((t (:inherit nano-strong :height 1.0)))) '(org-document-title ((t (:inherit nano-strong :height 1.5 :family "Linux Libertine")))) '(org-document-info-keyword ((t :inherit (nano-faded fixed-pitch)))) '(org-level-1 ((t (:inherit nano-strong :extend nil :height 1.4)))) '(org-level-2 ((t (:inherit nano-strong :extend nil :height 1.3)))) '(org-level-3 ((t (:inherit nano-strong :extend nil :height 1.2)))) '(org-level-4 ((t (:inherit nano-strong :extend nil :height 1.1)))) '(org-level-4 ((t (:inherit nano-strong :extend nil :height 1.0)))) '(org-level-4 ((t (:inherit nano-strong :extend nil :height 1.0)))) '(org-link ((t (:inherit nano-salient :underline t)))) '(org-block ((t :inherit fixed-pitch))) '(org-code ((t :inherit (nano-salient fixed-pitch)))) '(org-indent ((t :inherit (org-hide fixed-pitch)))) '(org-table ((t :inherit fixed-pitch))) '(org-block-begin-line ((t :inherit (nano-faded fixed-pitch) :extend t))) '(org-block-end-line ((t :inherit (nano-faded fixed-pitch) :extend t))) '(org-meta-line ((t :inherit (nano-faded fixed-pitch))))) (provide 'orgconfig) ;;; orgconfig.el ends here