2018-07-15 20:51:57 -04:00
|
|
|
(use-package spacemacs-theme
|
|
|
|
:defer t
|
2018-07-20 00:50:51 -04:00
|
|
|
:config
|
|
|
|
(setq spacemacs-theme-custom-colors '((lnum . "#64707c"))))
|
2018-07-15 20:51:57 -04:00
|
|
|
|
|
|
|
(defvar nd/theme 'spacemacs-dark)
|
|
|
|
(defvar nd/theme-window-loaded nil)
|
|
|
|
(defvar nd/theme-terminal-loaded nil)
|
|
|
|
|
|
|
|
;; required for emacsclient/daemon setup
|
|
|
|
(if (daemonp)
|
|
|
|
(add-hook 'after-make-frame-functions
|
2018-11-22 00:49:47 -05:00
|
|
|
(lambda (frame)
|
2018-07-15 20:51:57 -04:00
|
|
|
(select-frame frame)
|
|
|
|
(if (window-system frame)
|
|
|
|
(unless nd/theme-window-loaded
|
|
|
|
(if nd/theme-terminal-loaded
|
|
|
|
(enable-theme nd/theme)
|
|
|
|
(load-theme nd/theme t))
|
|
|
|
(setq nd/theme-window-loaded t))
|
|
|
|
(unless nd/theme-terminal-loaded
|
|
|
|
(if nd/theme-window-loaded
|
|
|
|
(enable-theme nd/theme)
|
|
|
|
(load-theme nd/theme t))
|
|
|
|
(setq nd/theme-terminal-loaded t)))))
|
|
|
|
(progn
|
|
|
|
(load-theme nd/theme t)
|
|
|
|
(if (display-graphic-p)
|
|
|
|
(setq nd/theme-window-loaded t)
|
|
|
|
(setq nd/theme-terminal-loaded t))))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-20 02:23:08 -04:00
|
|
|
(use-package spaceline
|
|
|
|
:ensure t
|
|
|
|
:config
|
|
|
|
(require 'spaceline-config)
|
|
|
|
(setq powerline-default-separator 'arrow
|
2018-11-22 00:49:47 -05:00
|
|
|
spaceline-buffer-size-p nil)
|
2018-07-20 02:23:08 -04:00
|
|
|
(spaceline-spacemacs-theme))
|
|
|
|
|
|
|
|
(line-number-mode 1)
|
|
|
|
(column-number-mode 1)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-15 00:04:47 -04:00
|
|
|
(use-package delight
|
|
|
|
:ensure t)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-20 02:23:08 -04:00
|
|
|
(setq inhibit-startup-screen t)
|
|
|
|
|
|
|
|
(tool-bar-mode -1)
|
|
|
|
(menu-bar-mode -1)
|
|
|
|
(scroll-bar-mode -1)
|
|
|
|
|
|
|
|
(setq make-backup-files nil)
|
|
|
|
(setq auto-save-default nil)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-20 02:23:08 -04:00
|
|
|
(setq pop-up-windows nil) ; no popups (eg ediff)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-20 02:23:08 -04:00
|
|
|
(set-default 'truncate-lines t)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-20 02:23:08 -04:00
|
|
|
(setq scroll-conservatively 100)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-20 02:23:08 -04:00
|
|
|
(when (fboundp 'imagemagick-register-types)
|
|
|
|
(imagemagick-register-types))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-20 02:23:08 -04:00
|
|
|
(defalias 'yes-or-no-p 'y-or-n-p) ; eliminate yes or no prompt on killing procs
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-15 00:04:47 -04:00
|
|
|
(use-package beacon
|
|
|
|
:ensure t
|
|
|
|
:delight
|
|
|
|
:init
|
|
|
|
(beacon-mode 1))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-15 00:04:47 -04:00
|
|
|
(use-package which-key
|
|
|
|
:ensure t
|
|
|
|
:delight
|
|
|
|
:init
|
|
|
|
(which-key-mode))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-13 20:05:50 -04:00
|
|
|
(use-package helm
|
|
|
|
:ensure t
|
2018-07-14 20:42:20 -04:00
|
|
|
:delight
|
2018-07-13 20:05:50 -04:00
|
|
|
:init
|
|
|
|
(helm-mode 1)
|
|
|
|
:config
|
2018-07-20 00:50:51 -04:00
|
|
|
(setq helm-autoresize-max-height 0
|
2018-11-22 00:49:47 -05:00
|
|
|
helm-autoresize-max-height 40
|
|
|
|
helm-M-x-fuzzy-match t
|
|
|
|
helm-buffers-fuzzy-matching t
|
|
|
|
helm-recentf-fuzzy-match t
|
|
|
|
helm-semantic-fuzzy-match t
|
|
|
|
helm-imenu-fuzzy-match t
|
|
|
|
helm-scroll-amount 8)
|
2018-07-14 23:36:42 -04:00
|
|
|
(add-to-list 'display-buffer-alist
|
|
|
|
`(,(rx bos "*helm" (* not-newline) "*" eos)
|
|
|
|
(display-buffer-in-side-window)
|
|
|
|
(inhibit-same-window . t)
|
2018-07-15 00:04:47 -04:00
|
|
|
(window-height . 0.4)))
|
|
|
|
(helm-autoresize-mode 1)
|
|
|
|
(require 'helm-config))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-09-21 01:03:17 -04:00
|
|
|
(use-package helm-swoop
|
|
|
|
:ensure t)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-15 00:04:47 -04:00
|
|
|
(use-package rainbow-delimiters
|
|
|
|
:ensure t
|
|
|
|
:delight
|
|
|
|
:hook
|
|
|
|
((prog-mode . rainbow-delimiters-mode)
|
|
|
|
(inferior-ess-mode . rainbow-delimiters-mode)
|
2018-09-15 00:18:19 -04:00
|
|
|
(ess-mode . rainbow-delimiters-mode)
|
|
|
|
(LaTeX-mode . rainbow-delimiters-mode)
|
|
|
|
(Tex-latex-mode . rainbow-delimiters-mode)))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-03 22:27:12 -04:00
|
|
|
(use-package ace-window
|
|
|
|
:ensure t
|
2018-07-20 00:50:51 -04:00
|
|
|
:config
|
|
|
|
(setq aw-background t)
|
2018-07-25 09:43:51 -04:00
|
|
|
(custom-set-faces '(aw-leading-char-face
|
2018-11-22 00:49:47 -05:00
|
|
|
((t (:foreground "#292b2e"
|
|
|
|
:background "#bc6ec5"
|
|
|
|
:height 1.0
|
|
|
|
:box nil))))))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
|
|
|
(use-package avy
|
|
|
|
:ensure t
|
|
|
|
:config
|
|
|
|
(setq avy-background t))
|
|
|
|
|
|
|
|
(use-package sudo-edit
|
|
|
|
:ensure t)
|
|
|
|
|
2018-07-15 00:04:47 -04:00
|
|
|
(use-package undo-tree
|
|
|
|
:ensure t
|
|
|
|
:delight
|
|
|
|
:config
|
2018-07-20 00:50:51 -04:00
|
|
|
(setq undo-tree-visualizer-diff t)
|
2018-07-15 00:04:47 -04:00
|
|
|
(global-undo-tree-mode))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-06-09 18:31:40 -04:00
|
|
|
(use-package fill-column-indicator
|
|
|
|
:ensure t
|
2018-07-20 00:50:51 -04:00
|
|
|
:config
|
|
|
|
(setq fci-rule-use-dashes t)
|
2018-07-15 00:04:47 -04:00
|
|
|
:hook
|
|
|
|
(prog-mode . fci-mode))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-03 19:48:50 -04:00
|
|
|
(use-package rainbow-mode
|
|
|
|
:ensure t)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-21 14:01:53 -04:00
|
|
|
(use-package async
|
|
|
|
:ensure t
|
2018-07-24 17:18:17 -04:00
|
|
|
:delight dired-async-mode
|
2018-07-21 14:01:53 -04:00
|
|
|
:init
|
|
|
|
(dired-async-mode 1))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-08-06 12:27:26 -04:00
|
|
|
(use-package csv-mode
|
2018-09-18 16:07:40 -04:00
|
|
|
:ensure t
|
|
|
|
:hook (csv-mode . (lambda () (csv-align-fields nil (point-min) (point-max)))))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-08-10 10:15:09 -04:00
|
|
|
(use-package markdown-mode
|
|
|
|
:ensure t)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-08-10 10:15:09 -04:00
|
|
|
(use-package polymode
|
|
|
|
:ensure t
|
|
|
|
:after markdown-mode
|
|
|
|
:mode
|
|
|
|
(("\\.Rmd\\'" . poly-markdown+r-mode)
|
|
|
|
("\\.rmd\\'" . poly-markdown+r-mode))
|
|
|
|
:config
|
|
|
|
(require 'poly-R)
|
|
|
|
(require 'poly-markdown))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-05-19 14:45:43 -04:00
|
|
|
;; lovingly stolen from aaron harris
|
|
|
|
(defmacro nd/with-advice (adlist &rest body)
|
|
|
|
"Execute BODY with temporary advice in ADLIST.
|
|
|
|
|
|
|
|
Each element of ADLIST should be a list of the form
|
|
|
|
(SYMBOL WHERE FUNCTION [PROPS])
|
|
|
|
suitable for passing to `advice-add'. The BODY is wrapped in an
|
|
|
|
`unwind-protect' form, so the advice will be removed even in the
|
|
|
|
event of an error or nonlocal exit."
|
|
|
|
(declare (debug ((&rest (&rest form)) body))
|
|
|
|
(indent 1))
|
|
|
|
`(progn
|
|
|
|
,@(mapcar (lambda (adform)
|
|
|
|
(cons 'advice-add adform))
|
|
|
|
adlist)
|
|
|
|
(unwind-protect (progn ,@body)
|
|
|
|
,@(mapcar (lambda (adform)
|
|
|
|
`(advice-remove ,(car adform) ,(nth 2 adform)))
|
|
|
|
adlist))))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-05-19 15:09:15 -04:00
|
|
|
(defun nd/filter-list-prefix (prefix str-list)
|
2018-09-16 12:05:46 -04:00
|
|
|
"Return a subset of STR-LIST whose first characters are PREFIX."
|
2018-05-19 15:09:15 -04:00
|
|
|
(seq-filter (lambda (i)
|
|
|
|
(and (stringp i)
|
|
|
|
(string-prefix-p prefix i)))
|
|
|
|
str-list))
|
2018-09-16 13:19:57 -04:00
|
|
|
|
2018-07-19 23:45:37 -04:00
|
|
|
(defun nd/move-key (keymap-from keymap-to key)
|
|
|
|
"Move KEY from KEYMAP-FROM keymap to KEYMAP-TO keymap."
|
|
|
|
(define-key keymap-to key (lookup-key keymap-from key))
|
|
|
|
(define-key keymap-from key nil))
|
2018-08-22 01:31:00 -04:00
|
|
|
|
|
|
|
(defun nd/get-apps-from-mime (mimetype)
|
2018-08-22 23:23:09 -04:00
|
|
|
"Return all applications that can open a given MIMETYPE.
|
|
|
|
The list is comprised of alists where pairs are of the form (name . command)."
|
2018-08-22 01:53:36 -04:00
|
|
|
(let* ((case-fold-search nil)
|
2018-11-22 00:49:47 -05:00
|
|
|
(mime-regex (concat "^MimeType=.*" mimetype ";.*$"))
|
|
|
|
(desktop-dirs '("/usr/share/applications"
|
|
|
|
"/usr/local/share/applications"
|
|
|
|
"~/.local/share/applications"))
|
|
|
|
(desktop-files (mapcan (lambda (d) (directory-files d t ".*\\.desktop" t)) desktop-dirs))
|
|
|
|
(app-list))
|
|
|
|
(dolist (file desktop-files app-list)
|
|
|
|
(with-temp-buffer
|
|
|
|
(insert-file-contents file)
|
|
|
|
(let* ((tb (buffer-string)))
|
|
|
|
(if (string-match mime-regex tb)
|
|
|
|
(let* ((exec (progn (string-match "^Exec=\\(.*\\)$" tb)
|
|
|
|
(match-string 1 tb)))
|
|
|
|
(name (or
|
|
|
|
(progn (string-match "^Name=\\(.*\\)$" tb)
|
|
|
|
(match-string 1 tb))
|
|
|
|
exec)))
|
|
|
|
(setq app-list (cons `(,name . ,exec) app-list)))))))))
|
2018-08-22 01:53:36 -04:00
|
|
|
|
|
|
|
(defun nd/get-apps-bulk-from-mime (mimetype)
|
|
|
|
"Like `nd/get-apps-from-mime' but only includes apps that can open
|
|
|
|
multiple files at once for given MIMETYPE."
|
|
|
|
(let ((case-fold-search nil))
|
2018-11-22 00:49:47 -05:00
|
|
|
(seq-filter (lambda (a) (string-match ".*%[FU].*" (car a))) (nd/get-apps-from-mime mimetype))))
|
2018-08-26 00:47:18 -04:00
|
|
|
|
|
|
|
(defun nd/execute-desktop-command (cmd file)
|
2018-08-28 17:48:27 -04:00
|
|
|
"Opens FILE using CMD in separate process where CMD is from a
|
|
|
|
desktop file exec directive."
|
|
|
|
(let* ((cmd-arg (replace-regexp-in-string "%[fuFU]" file cmd t t)))
|
2018-11-22 00:49:47 -05:00
|
|
|
(call-process-shell-command (concat cmd-arg " &"))))
|
2018-08-26 00:47:18 -04:00
|
|
|
|
|
|
|
(defun nd/get-mime-type (file)
|
|
|
|
"Get the mime type of FILE."
|
|
|
|
(let* ((cmd (concat "file --mime-type -b " file))
|
2018-11-22 00:49:47 -05:00
|
|
|
(mt (shell-command-to-string cmd)))
|
|
|
|
(replace-regexp-in-string "\n\\'" "" mt)))
|
2018-10-31 23:23:54 -04:00
|
|
|
|
|
|
|
(defvar nd/device-mount-dir (concat "/media/" (user-login-name)))
|
|
|
|
|
|
|
|
(defun nd/get-mounted-directories (&optional mount-path)
|
|
|
|
"Scan MOUNT-PATH (defaults to /media/$USER for devices that have
|
|
|
|
been mounted by udevil."
|
|
|
|
(seq-filter #'file-directory-p (directory-files nd/device-mount-dir t "^\\([^.]\\|\\.[^.]\\|\\.\\..\\)")))
|
2018-11-02 00:07:18 -04:00
|
|
|
|
|
|
|
(defun nd/device-mountable-p (devpath)
|
|
|
|
"Returns label or uuid if device at DEVPATH is has a readable
|
|
|
|
filesystem and is a usb drive."
|
|
|
|
(let ((devprops (shell-command-to-string (concat "udevadm info --query=property " devpath))))
|
|
|
|
(and (string-match-p (regexp-quote "ID_FS_TYPE") devprops)
|
|
|
|
(string-match-p (regexp-quote "ID_BUS=usb") devprops)
|
|
|
|
(progn
|
|
|
|
(or (string-match "ID_FS_LABEL=\\(.*\\)\n" devprops)
|
|
|
|
(string-match "ID_FS_UUID=\\(.*\\)\n" devprops))
|
|
|
|
(match-string 1 devprops)))))
|
|
|
|
|
|
|
|
(defun nd/get-mountable-devices ()
|
|
|
|
"Return paths of all mountable devices. (see `nd/device-mountable-p')."
|
|
|
|
(seq-filter #'car
|
|
|
|
(mapcar (lambda (d) `(,(nd/device-mountable-p d) . ,d))
|
|
|
|
(directory-files "/dev" t "sd.[0-9]+"))))
|
|
|
|
|
|
|
|
(defun nd/mount-device (dev &rest opts)
|
|
|
|
"Mount device DEV using udevil."
|
2018-12-11 19:59:10 -05:00
|
|
|
(call-process "udevil" nil nil nil "mount" dev))
|
2018-11-02 00:07:18 -04:00
|
|
|
|
|
|
|
(defun nd/get-mountpoint (dev)
|
|
|
|
"Get the filesystem mountpoint for device DEV."
|
|
|
|
(let ((mp (shell-command-to-string (concat "printf %s \"$(findmnt -n -o TARGET " dev ")\""))))
|
|
|
|
(and (not (equal "" mp)) mp)))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-14 20:42:20 -04:00
|
|
|
(defun nd/split-and-follow-horizontally ()
|
2018-07-18 10:35:37 -04:00
|
|
|
"Split window horizontally and move focus."
|
2018-07-14 20:42:20 -04:00
|
|
|
(interactive)
|
|
|
|
(split-window-below)
|
|
|
|
(balance-windows)
|
|
|
|
(other-window 1))
|
|
|
|
|
|
|
|
(defun nd/split-and-follow-vertically ()
|
2018-07-18 10:35:37 -04:00
|
|
|
"Split window vertically and move focus."
|
2018-07-14 20:42:20 -04:00
|
|
|
(interactive)
|
|
|
|
(split-window-right)
|
|
|
|
(balance-windows)
|
|
|
|
(other-window 1))
|
|
|
|
|
2018-07-14 20:11:10 -04:00
|
|
|
(defun nd/switch-to-previous-buffer ()
|
2018-07-18 10:35:37 -04:00
|
|
|
"Switch the buffer to the last opened buffer."
|
2018-07-14 20:11:10 -04:00
|
|
|
(interactive)
|
|
|
|
(switch-to-buffer (other-buffer (current-buffer) 1)))
|
|
|
|
|
2018-07-14 20:42:20 -04:00
|
|
|
(defun nd/config-reload ()
|
2018-12-11 19:33:59 -05:00
|
|
|
"Reloads main configuration file at runtime."
|
2018-07-14 20:42:20 -04:00
|
|
|
(interactive)
|
2018-12-11 20:05:56 -05:00
|
|
|
(org-babel-load-file nd/conf-main))
|
2018-07-14 20:42:20 -04:00
|
|
|
|
|
|
|
(defun nd/config-visit ()
|
2018-07-18 10:35:37 -04:00
|
|
|
"Opens the main conf.org file (the one that really matters)."
|
2018-07-14 20:42:20 -04:00
|
|
|
(interactive)
|
2018-12-11 20:05:56 -05:00
|
|
|
(find-file nd/conf-main))
|
2018-07-18 10:35:37 -04:00
|
|
|
|
|
|
|
(defun nd/kill-current-buffer ()
|
|
|
|
"Kill the current buffer."
|
|
|
|
(interactive)
|
|
|
|
(kill-buffer (current-buffer)))
|
|
|
|
|
|
|
|
(defun nd/close-all-buffers ()
|
|
|
|
"Kill all buffers without regard for their origin."
|
|
|
|
(interactive)
|
|
|
|
(mapc 'kill-buffer (buffer-list)))
|
2018-09-16 13:19:57 -04:00
|
|
|
|
|
|
|
(defun nd/org-close-all-buffers ()
|
|
|
|
"Kill all org buffers."
|
|
|
|
(interactive)
|
|
|
|
(mapc 'kill-buffer (org-buffer-list)))
|
2018-08-22 00:20:31 -04:00
|
|
|
|
|
|
|
(defun nd/open-urxvt ()
|
|
|
|
"Launch urxvt in the current directory."
|
|
|
|
(interactive)
|
2018-08-27 17:09:33 -04:00
|
|
|
(let ((cwd (expand-file-name default-directory)))
|
2018-11-22 00:49:47 -05:00
|
|
|
(call-process "urxvt" nil 0 nil "-cd" cwd)))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-10-14 16:42:13 -04:00
|
|
|
(setq-default indent-tabs-mode nil
|
2018-11-22 00:49:47 -05:00
|
|
|
tab-width 4)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-17 23:27:53 -04:00
|
|
|
(use-package company
|
|
|
|
:ensure t
|
2018-07-22 07:37:44 -04:00
|
|
|
:delight " ©"
|
2018-07-17 23:27:53 -04:00
|
|
|
:config
|
|
|
|
(setq company-idle-delay 0
|
2018-11-22 00:49:47 -05:00
|
|
|
company-minimum-prefix-length 3))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-17 23:27:53 -04:00
|
|
|
(use-package flycheck
|
|
|
|
:ensure t
|
|
|
|
:hook
|
2018-07-18 13:45:26 -04:00
|
|
|
(prog-mode . flycheck-mode)
|
|
|
|
:config
|
|
|
|
(setq flycheck-check-syntax-automatically '(save
|
2018-11-22 00:49:47 -05:00
|
|
|
idle-change
|
|
|
|
mode-enabled)
|
|
|
|
flycheck-idle-change-delay 2
|
|
|
|
flycheck-error-list-minimum-level 'warning
|
|
|
|
flycheck-navigation-minimum-level 'warning))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-17 23:27:53 -04:00
|
|
|
(use-package yasnippet
|
|
|
|
:ensure t)
|
|
|
|
|
|
|
|
(use-package yasnippet-snippets
|
|
|
|
:ensure t
|
|
|
|
:after yasnippet
|
|
|
|
:hook
|
|
|
|
((prog-mode . yas-minor-mode))
|
|
|
|
:config
|
|
|
|
(yas-reload-all))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-06 00:38:09 -05:00
|
|
|
;; (electric-pair-mode t)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-08-19 10:27:55 -04:00
|
|
|
(use-package flyspell-correct-helm
|
|
|
|
:ensure t
|
|
|
|
:after (helm flyspell))
|
2018-10-11 17:08:13 -04:00
|
|
|
|
2018-11-22 00:49:47 -05:00
|
|
|
;; (add-hook 'flyspell-mode-hook 'flyspell-buffer)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-18 11:32:57 -04:00
|
|
|
(add-hook 'prog-mode-hook #'prettify-symbols-mode)
|
2018-08-18 18:07:39 -04:00
|
|
|
(add-hook 'prog-mode-hook #'flyspell-prog-mode)
|
|
|
|
(setq flyspell-issue-message-flag nil)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-18 11:32:57 -04:00
|
|
|
(add-hook 'emacs-lisp-mode-hook 'company-mode)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-18 11:32:57 -04:00
|
|
|
(defun nd/init-ess-company ()
|
2018-10-10 19:23:21 -04:00
|
|
|
"Set the company backends for ess modes."
|
2018-07-18 11:32:57 -04:00
|
|
|
(setq-local company-backends '((company-R-objects company-R-args))))
|
|
|
|
|
|
|
|
(use-package ess
|
|
|
|
:ensure t
|
|
|
|
:init
|
|
|
|
(load "ess-site")
|
|
|
|
:hook
|
2018-07-18 12:06:51 -04:00
|
|
|
((ess-mode . flycheck-mode)
|
|
|
|
(ess-mode . company-mode)
|
2018-07-18 11:32:57 -04:00
|
|
|
(ess-mode . nd/init-ess-company)
|
|
|
|
(ess-mode . prettify-symbols-mode)
|
2018-07-18 15:39:30 -04:00
|
|
|
(ess-mode . fci-mode)
|
2018-07-18 11:32:57 -04:00
|
|
|
|
|
|
|
(inferior-ess-mode . company-mode)
|
|
|
|
(inferior-ess-mode . nd/init-ess-company)
|
|
|
|
(inferior-ess-mode . prettify-symbols-mode))
|
|
|
|
:config
|
|
|
|
(setq inferior-R-args "--quiet --no-save"
|
2018-11-22 00:49:47 -05:00
|
|
|
ess-history-file "session.Rhistory"
|
|
|
|
ess-history-directory (substitute-in-file-name "${XDG_CONFIG_HOME}/r/")))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-03-21 21:44:31 -04:00
|
|
|
(elpy-enable)
|
|
|
|
|
|
|
|
;; make python tabs 4 chars
|
|
|
|
(add-hook 'python-mode-hook
|
|
|
|
(lambda ()
|
|
|
|
(setq indent-tabs-mode t)
|
|
|
|
(setq tab-width 4)
|
2018-12-11 19:59:10 -05:00
|
|
|
(setq python-offset 4)))
|
2018-10-21 01:18:11 -04:00
|
|
|
|
|
|
|
(setq python-shell-interpreter "ipython"
|
|
|
|
python-shell-interpreter-args "--colors=Linux --profile=default")
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-03 19:48:50 -04:00
|
|
|
(use-package haskell-mode
|
|
|
|
:ensure t
|
2018-07-20 00:50:51 -04:00
|
|
|
:config
|
2018-11-08 19:32:54 -05:00
|
|
|
(setq haskell-interactive-popup-errors nil))
|
|
|
|
|
|
|
|
(use-package intero
|
2018-07-22 07:37:44 -04:00
|
|
|
:ensure t
|
2018-11-08 19:32:54 -05:00
|
|
|
:after haskell-mode
|
2018-07-22 07:37:44 -04:00
|
|
|
:hook
|
2018-11-08 19:32:54 -05:00
|
|
|
(haskell-mode . intero-mode))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-18 23:30:26 -05:00
|
|
|
(add-hook 'haskell-mode-hook #'subword-mode)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-10-10 19:23:21 -04:00
|
|
|
(add-hook 'LaTeX-mode-hook #'flycheck-mode)
|
|
|
|
(add-hook 'Tex-latex-mode-hook #'flycheck-mode)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-10-10 19:23:21 -04:00
|
|
|
(defun nd/init-company-auctex ()
|
|
|
|
"Set the company backends for auctex modes."
|
|
|
|
(setq-local company-backends '((company-auctex-labels
|
2018-11-22 00:49:47 -05:00
|
|
|
company-auctex-bibs
|
|
|
|
company-auctex-macros
|
|
|
|
company-auctex-symbols
|
|
|
|
company-auctex-environments
|
|
|
|
;; company-latex-commands
|
|
|
|
company-math-symbols-latex
|
|
|
|
company-math-symbols-unicode))))
|
2018-10-10 19:23:21 -04:00
|
|
|
|
|
|
|
(use-package company-math
|
|
|
|
:ensure t
|
|
|
|
:after company
|
|
|
|
:config
|
|
|
|
(setq company-math-allow-unicode-symbols-in-faces '(font-latex-math-face)
|
2018-11-22 00:49:47 -05:00
|
|
|
company-math-disallow-latex-symbols-in-faces nil))
|
2018-10-10 19:23:21 -04:00
|
|
|
|
|
|
|
(use-package company-auctex
|
|
|
|
:ensure t
|
|
|
|
:after (company company-math)
|
|
|
|
:hook
|
|
|
|
((LaTeX-mode . company-mode)
|
|
|
|
(LaTeX-mode . nd/init-company-auctex)
|
|
|
|
(Tex-latex-mode . company-mode)
|
|
|
|
(Tex-latex-mode . nd/init-company-auctex)))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-10-11 14:19:49 -04:00
|
|
|
(defun nd/turn-on-auto-fill-maybe ()
|
|
|
|
"Prompts user to turn on `auto-fill-mode'."
|
|
|
|
(when (y-or-n-p "Activate Auto Fill Mode? ")
|
2018-11-22 00:49:47 -05:00
|
|
|
(turn-on-auto-fill)))
|
2018-10-11 14:19:49 -04:00
|
|
|
|
|
|
|
(add-hook 'LaTeX-mode-hook #'nd/turn-on-auto-fill-maybe)
|
|
|
|
(add-hook 'LaTeX-mode-hook #'fci-mode)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-10-11 17:08:13 -04:00
|
|
|
(add-hook 'LaTeX-mode-hook (lambda () (flyspell-mode 1)))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-20 02:30:03 -04:00
|
|
|
(use-package org
|
2018-07-21 00:59:52 -04:00
|
|
|
:delight
|
2018-07-21 02:24:45 -04:00
|
|
|
;; source of indent-mode required here
|
2018-07-21 00:59:52 -04:00
|
|
|
(org-indent-mode nil org-indent)
|
|
|
|
(visual-line-mode)
|
|
|
|
:hook
|
|
|
|
(org-mode . visual-line-mode)
|
2018-07-20 02:30:03 -04:00
|
|
|
:config
|
|
|
|
(setq org-startup-indented t
|
2018-11-22 00:49:47 -05:00
|
|
|
org-directory "~/Org"
|
2018-11-26 22:17:24 -05:00
|
|
|
org-modules '(org-habit org-protocol))
|
2018-07-21 02:24:45 -04:00
|
|
|
|
2018-11-26 22:17:24 -05:00
|
|
|
(require 'org-protocol))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-26 22:17:24 -05:00
|
|
|
(setq org-special-ctrl-a/e t
|
|
|
|
org-special-ctrl-k t
|
|
|
|
org-yank-adjusted-subtrees t)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-26 22:17:24 -05:00
|
|
|
(defun nd/org-save-all-org-buffers ()
|
|
|
|
"Save org buffers without confirmation or message (unlike default)."
|
|
|
|
(save-some-buffers t (lambda () (derived-mode-p 'org-mode)))
|
|
|
|
(when (featurep 'org-id) (org-id-locations-save)))
|
2018-07-21 02:24:45 -04:00
|
|
|
|
2018-11-26 22:17:24 -05:00
|
|
|
(run-at-time "00:59" 3600 #'nd/org-save-all-org-buffers)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-26 22:17:24 -05:00
|
|
|
(setq org-log-into-drawer "LOGBOOK")
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-26 22:17:24 -05:00
|
|
|
(setq org-log-done 'time
|
|
|
|
org-log-redeadline 'time
|
|
|
|
org-log-reschedule 'time)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-26 22:17:24 -05:00
|
|
|
(setq org-log-repeat 'note)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-05-04 20:36:22 -04:00
|
|
|
(use-package org-bullets
|
|
|
|
:ensure t
|
2018-07-15 00:04:47 -04:00
|
|
|
:hook
|
|
|
|
(org-mode . org-bullets-mode))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-21 02:24:45 -04:00
|
|
|
(add-hook 'org-mode-hook
|
2018-11-22 00:49:47 -05:00
|
|
|
(lambda ()
|
|
|
|
(let ((heading-height 1.15))
|
|
|
|
(set-face-attribute 'org-level-1 nil :weight 'bold :height heading-height)
|
|
|
|
(set-face-attribute 'org-level-2 nil :weight 'semi-bold :height heading-height)
|
|
|
|
(set-face-attribute 'org-level-3 nil :weight 'normal :height heading-height)
|
|
|
|
(set-face-attribute 'org-level-4 nil :weight 'normal :height heading-height)
|
|
|
|
(set-face-attribute 'org-level-5 nil :weight 'normal :height heading-height))))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-21 02:24:45 -04:00
|
|
|
(setq org-src-window-setup 'current-window
|
2018-11-22 00:49:47 -05:00
|
|
|
org-src-fontify-natively t
|
|
|
|
org-edit-src-content-indentation 0)
|
2018-07-21 02:24:45 -04:00
|
|
|
|
|
|
|
(add-to-list 'org-structure-template-alist
|
|
|
|
'("el" "#+BEGIN_SRC emacs-lisp\n?\n#+END_SRC"))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-27 23:56:48 -05:00
|
|
|
(setq org-insert-heading-respect-content t)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-21 02:24:45 -04:00
|
|
|
(defun nd/mark-subtree-keyword (new-keyword &optional exclude)
|
2018-11-22 00:23:46 -05:00
|
|
|
"Mark all tasks in a subtree with NEW-KEYWORD unless original
|
|
|
|
keyword is in the optional argument EXCLUDE."
|
2018-07-21 02:24:45 -04:00
|
|
|
(let ((subtree-end (save-excursion (org-end-of-subtree t))))
|
|
|
|
(if (not (listp exclude))
|
|
|
|
(error "exlude must be a list if provided"))
|
|
|
|
(save-excursion
|
|
|
|
(while (< (point) subtree-end)
|
|
|
|
(let ((keyword (nd/is-todoitem-p)))
|
|
|
|
(if (and keyword (not (member keyword exclude)))
|
|
|
|
(org-todo new-keyword)))
|
|
|
|
(outline-next-heading)))))
|
|
|
|
|
|
|
|
(defun nd/mark-subtree-done ()
|
2018-11-22 00:23:46 -05:00
|
|
|
"Mark all tasks in subtree as DONE unless they are already CANC."
|
2018-07-21 02:24:45 -04:00
|
|
|
(interactive)
|
|
|
|
(nd/mark-subtree-keyword "DONE" '("CANC")))
|
|
|
|
|
|
|
|
(defun nd/org-clone-subtree-with-time-shift (n &optional shift)
|
|
|
|
"Like `org-clone-subtree-with-time-shift' except it resets checkboxes
|
2018-11-22 00:23:46 -05:00
|
|
|
and reverts all todo keywords to TODO."
|
2018-07-21 02:24:45 -04:00
|
|
|
(interactive "nNumber of clones to produce: ")
|
|
|
|
|
|
|
|
(let ((shift (or (org-entry-get nil "TIME_SHIFT" 'selective)
|
|
|
|
(read-from-minibuffer
|
|
|
|
"Date shift per clone (e.g. +1w, empty to copy unchanged): "))))
|
|
|
|
(condition-case err
|
|
|
|
(progn
|
|
|
|
(save-excursion
|
2018-11-22 00:49:47 -05:00
|
|
|
;; clone once and reset
|
|
|
|
(org-clone-subtree-with-time-shift 1 shift)
|
2018-07-21 02:24:45 -04:00
|
|
|
(org-forward-heading-same-level 1 t)
|
|
|
|
(org-reset-checkbox-state-subtree)
|
|
|
|
(nd/mark-subtree-keyword "TODO")
|
|
|
|
(call-interactively 'nd/org-log-delete)
|
|
|
|
(org-cycle)
|
2018-11-22 00:49:47 -05:00
|
|
|
;; clone reset tree again if we need more than one clone
|
|
|
|
(if (> n 1)
|
|
|
|
(let ((additional-trees (- n 1)))
|
|
|
|
(org-clone-subtree-with-time-shift additional-trees shift)
|
|
|
|
(dotimes (i additional-trees)
|
|
|
|
(org-forward-heading-same-level 1 t)
|
|
|
|
(org-cycle))))))
|
2018-07-21 02:24:45 -04:00
|
|
|
(error (message "%s" (error-message-string err))))))
|
|
|
|
|
|
|
|
(defun nd/org-log-delete ()
|
|
|
|
"Delete logbook drawer of subtree."
|
|
|
|
(interactive)
|
|
|
|
(save-excursion
|
|
|
|
(goto-char (org-log-beginning))
|
|
|
|
(when (save-excursion
|
|
|
|
(save-match-data
|
|
|
|
(beginning-of-line 0)
|
|
|
|
(search-forward-regexp org-drawer-regexp)
|
|
|
|
(goto-char (match-beginning 1))
|
|
|
|
(looking-at "LOGBOOK")))
|
|
|
|
(org-mark-element)
|
|
|
|
(delete-region (region-beginning) (region-end))
|
|
|
|
(org-remove-empty-drawer-at (point)))))
|
2018-11-24 20:34:23 -05:00
|
|
|
|
2018-12-06 22:54:48 -05:00
|
|
|
(defun nd/org-insert-todo-heading-inactive-timestamp ()
|
|
|
|
"Insert a todo heading but also insert inactive timestamp set to now."
|
|
|
|
(interactive)
|
|
|
|
;; a bit redundant and hacky, with the advantage of being effective
|
|
|
|
(when (not (org-insert-item 'checkbox))
|
|
|
|
(call-interactively 'org-insert-todo-heading)
|
|
|
|
(insert "\n")
|
|
|
|
(funcall-interactively 'org-time-stamp-inactive '(16))
|
2018-12-11 19:59:10 -05:00
|
|
|
(forward-line -1)))
|
2018-12-06 22:54:48 -05:00
|
|
|
|
|
|
|
(defun nd/org-delete-subtree ()
|
|
|
|
"Delete the entire subtree under the current heading without sending to kill ring."
|
2018-11-24 20:34:23 -05:00
|
|
|
(interactive)
|
2018-12-06 22:54:48 -05:00
|
|
|
(org-back-to-heading t)
|
|
|
|
(delete-region (point) (+ 1 (save-excursion (org-end-of-subtree)))))
|
|
|
|
|
|
|
|
(defmacro nd/org-agenda-cmd-wrapper (get-head &rest body)
|
|
|
|
"Wraps commands in BODY in necessary code to allow commands to be
|
|
|
|
called from the agenda buffer. Particularly, this wrapper will
|
|
|
|
navigate to the original header, execute BODY, then update the agenda
|
|
|
|
buffer."
|
|
|
|
'(org-agenda-check-no-diary)
|
|
|
|
`(let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
|
2018-11-24 20:34:23 -05:00
|
|
|
(org-agenda-error)))
|
|
|
|
(buffer (marker-buffer hdmarker))
|
|
|
|
(pos (marker-position hdmarker))
|
|
|
|
(inhibit-read-only t)
|
|
|
|
newhead)
|
|
|
|
(org-with-remote-undo buffer
|
|
|
|
(with-current-buffer buffer
|
|
|
|
(widen)
|
|
|
|
(goto-char pos)
|
|
|
|
(org-show-context 'agenda)
|
2018-12-06 22:54:48 -05:00
|
|
|
,@body
|
|
|
|
(when ,get-head (setq newhead (org-get-heading))))
|
|
|
|
(if ,get-head
|
|
|
|
(org-agenda-change-all-lines newhead hdmarker)
|
|
|
|
(org-agenda-redo))
|
2018-11-24 20:34:23 -05:00
|
|
|
(beginning-of-line 1))))
|
2018-12-06 22:54:48 -05:00
|
|
|
|
|
|
|
(defun nd/org-agenda-toggle-checkbox ()
|
|
|
|
"Toggle checkboxes in org agenda view using `org-toggle-checkbox'."
|
|
|
|
(interactive)
|
|
|
|
(nd/org-agenda-cmd-wrapper
|
|
|
|
t
|
|
|
|
(call-interactively #'org-toggle-checkbox)))
|
2018-11-27 23:56:48 -05:00
|
|
|
|
2018-12-04 23:28:33 -05:00
|
|
|
(defun nd/org-agenda-clone-subtree-with-time-shift ()
|
|
|
|
"Apply `nd/org-clone-subtree-with-time-shift' to an agenda entry.
|
|
|
|
It will clone the last entry in the selected subtree."
|
|
|
|
(interactive)
|
2018-12-06 22:54:48 -05:00
|
|
|
(nd/org-agenda-cmd-wrapper
|
|
|
|
nil
|
|
|
|
(org-end-of-subtree)
|
|
|
|
(call-interactively #'nd/org-clone-subtree-with-time-shift)))
|
2018-12-04 23:28:33 -05:00
|
|
|
|
2018-12-06 22:54:48 -05:00
|
|
|
(defun nd/org-agenda-delete-subtree ()
|
|
|
|
"Apply `nd/org-delete-subtree' to an agenda entry."
|
2018-11-27 23:56:48 -05:00
|
|
|
(interactive)
|
2018-12-06 22:54:48 -05:00
|
|
|
(nd/org-agenda-cmd-wrapper
|
|
|
|
nil
|
|
|
|
(call-interactively #'nd/org-delete-subtree)))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
|
|
|
(setq org-columns-default-format
|
|
|
|
"%25ITEM %4TODO %TAGS %5Effort{:} %DELEGATE(DEL)")
|
|
|
|
|
|
|
|
(set-face-attribute 'org-column nil :background "#1e2023")
|
|
|
|
;; org-columns-summary-types
|
|
|
|
|
2018-07-21 02:24:45 -04:00
|
|
|
(use-package calfw
|
|
|
|
:ensure t
|
|
|
|
:config
|
|
|
|
(setq cfw:fchar-junction ?╋
|
2018-11-22 00:49:47 -05:00
|
|
|
cfw:fchar-vertical-line ?┃
|
|
|
|
cfw:fchar-horizontal-line ?━
|
|
|
|
cfw:fchar-left-junction ?┣
|
|
|
|
cfw:fchar-right-junction ?┫
|
|
|
|
cfw:fchar-top-junction ?┯
|
|
|
|
cfw:fchar-top-left-corner ?┏
|
|
|
|
cfw:fchar-top-right-corner ?┓))
|
2018-07-21 02:44:10 -04:00
|
|
|
|
|
|
|
(use-package calfw-org
|
|
|
|
:ensure t
|
|
|
|
:after calfw
|
|
|
|
:config
|
|
|
|
(setq cfw:org-agenda-schedule-args
|
2018-11-22 00:49:47 -05:00
|
|
|
'(:deadline :timestamp)))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-05-19 15:09:15 -04:00
|
|
|
(defun nd/org-todo-position (buffer alist)
|
|
|
|
(let ((win (car (cl-delete-if-not
|
|
|
|
(lambda (window)
|
|
|
|
(with-current-buffer (window-buffer window)
|
|
|
|
(memq major-mode
|
|
|
|
'(org-mode org-agenda-mode))))
|
|
|
|
(window-list)))))
|
|
|
|
(when win
|
|
|
|
(let ((new (split-window win -4 'below)))
|
|
|
|
(set-window-buffer new buffer)
|
|
|
|
new))))
|
2018-05-19 14:45:43 -04:00
|
|
|
|
2018-05-19 15:09:15 -04:00
|
|
|
(defun nd/org-todo-window-advice (orig-fn)
|
|
|
|
"Advice to fix window placement in `org-fast-todo-selection'."
|
|
|
|
(let ((override '("\\*Org todo\\*" nd/org-todo-position)))
|
|
|
|
(add-to-list 'display-buffer-alist override)
|
|
|
|
(nd/with-advice
|
|
|
|
((#'org-switch-to-buffer-other-window :override #'pop-to-buffer))
|
|
|
|
(unwind-protect (funcall orig-fn)
|
|
|
|
(setq display-buffer-alist
|
|
|
|
(delete override display-buffer-alist))))))
|
2018-05-19 14:45:43 -04:00
|
|
|
|
2018-05-19 15:09:15 -04:00
|
|
|
(advice-add #'org-fast-todo-selection :around #'nd/org-todo-window-advice)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-05-19 15:09:15 -04:00
|
|
|
(defun nd/org-tag-window-advice (orig-fn current inherited table &optional todo-table)
|
|
|
|
"Advice to fix window placement in `org-fast-tags-selection'."
|
|
|
|
(nd/with-advice
|
|
|
|
((#'delete-other-windows :override #'ignore)
|
|
|
|
;; pretty sure I just got lucky here...
|
|
|
|
(#'split-window-vertically :override #'(lambda (&optional size)
|
|
|
|
(split-window-below (or size -9)))))
|
|
|
|
(unwind-protect (funcall orig-fn current inherited table todo-table))))
|
2018-05-19 14:45:43 -04:00
|
|
|
|
2018-05-19 15:09:15 -04:00
|
|
|
(advice-add #'org-fast-tag-selection :around #'nd/org-tag-window-advice)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-05-19 17:39:36 -04:00
|
|
|
(defun nd/org-capture-position (buffer alist)
|
|
|
|
(let ((new (split-window (get-buffer-window) -14 'below)))
|
|
|
|
(set-window-buffer new buffer)
|
|
|
|
new))
|
|
|
|
|
|
|
|
(defun nd/org-capture-window-advice (orig-fn table title &optional prompt specials)
|
|
|
|
"Advice to fix window placement in `org-capture-select-template'."
|
|
|
|
(let ((override '("\\*Org Select\\*" nd/org-capture-position)))
|
|
|
|
(add-to-list 'display-buffer-alist override)
|
|
|
|
(nd/with-advice
|
|
|
|
((#'org-switch-to-buffer-other-window :override #'pop-to-buffer))
|
|
|
|
(unwind-protect (funcall orig-fn table title prompt specials)
|
|
|
|
(setq display-buffer-alist
|
|
|
|
(delete override display-buffer-alist))))))
|
|
|
|
|
|
|
|
(advice-add #'org-mks :around #'nd/org-capture-window-advice)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-09-13 16:44:57 -04:00
|
|
|
(setq org-html-doctype "html5")
|
2018-10-02 23:29:01 -04:00
|
|
|
|
|
|
|
(setq org-latex-pdf-process (list "latexmk -shell-escape -bibtex -f -pdf %f"))
|
2018-11-22 00:23:46 -05:00
|
|
|
|
|
|
|
;; (defvar nd/org-export-publishing-directory
|
|
|
|
;; (expand-file-name "~/Downloads/org-exports")
|
|
|
|
;; "The target directory to for all org exports.")
|
|
|
|
|
|
|
|
;; (defun nd/org-export-output-file-name (orig-fun extension &optional subtreep pub-dir)
|
|
|
|
;; "Change the target export directory for org exports."
|
|
|
|
;; (unless pub-dir
|
|
|
|
;; (setq pub-dir nd/org-export-publishing-directory)
|
|
|
|
;; (unless (file-directory-p pub-dir)
|
|
|
|
;; (make-directory pub-dir)))
|
|
|
|
;; (apply orig-fun extension subtreep pub-dir nil))
|
|
|
|
|
|
|
|
;; (advice-add 'org-export-output-file-name :around #'nd/org-export-output-file-name)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-22 00:31:27 -05:00
|
|
|
(add-to-list 'load-path "~/.emacs.d/untracked/org-gantt/")
|
|
|
|
(require 'org-gantt)
|
|
|
|
|
|
|
|
(add-to-list 'org-structure-template-alist
|
|
|
|
'("og" "#+BEGIN: org-gantt-chart\n?\n#+END"))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-05-19 15:09:15 -04:00
|
|
|
(setq org-todo-keywords
|
2018-11-22 00:23:46 -05:00
|
|
|
'((sequence
|
|
|
|
;; default undone state
|
2018-11-26 22:17:24 -05:00
|
|
|
"TODO(t/!)"
|
2018-11-22 00:23:46 -05:00
|
|
|
|
|
|
|
;; undone but available to do now (projects only)
|
2018-11-26 22:17:24 -05:00
|
|
|
"NEXT(n/!)" "|"
|
2018-11-22 00:23:46 -05:00
|
|
|
|
|
|
|
;; done and complete
|
2018-11-26 22:17:24 -05:00
|
|
|
"DONE(d/!)")
|
2018-11-22 00:23:46 -05:00
|
|
|
|
|
|
|
(sequence
|
|
|
|
;; undone and waiting on some external dependency
|
|
|
|
"WAIT(w@/!)"
|
|
|
|
|
|
|
|
;; undone but signifies tasks on which I don't wish to focus at the moment
|
|
|
|
"HOLD(h@/!)" "|"
|
2018-07-21 01:07:42 -04:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
;; done but not complete
|
|
|
|
"CANC(c@/!)")))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-22 00:49:47 -05:00
|
|
|
(setq org-todo-keyword-faces
|
2018-05-19 15:09:15 -04:00
|
|
|
'(("TODO" :foreground "light coral" :weight bold)
|
|
|
|
("NEXT" :foreground "khaki" :weight bold)
|
|
|
|
("DONE" :foreground "light green" :weight bold)
|
|
|
|
("WAIT" :foreground "orange" :weight bold)
|
|
|
|
("HOLD" :foreground "violet" :weight bold)
|
|
|
|
("CANC" :foreground "deep sky blue" :weight bold)))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-05-19 15:09:15 -04:00
|
|
|
(setq org-tag-alist
|
2018-11-22 00:23:46 -05:00
|
|
|
;; (@) gtd location context
|
2018-05-19 15:09:15 -04:00
|
|
|
'((:startgroup)
|
|
|
|
("@errand" . ?e)
|
|
|
|
("@home" . ?h)
|
|
|
|
("@work" . ?w)
|
2018-06-05 09:11:35 -04:00
|
|
|
("@travel" . ?r)
|
2018-05-19 15:09:15 -04:00
|
|
|
(:endgroup)
|
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
;; (#) gtd resource context
|
2018-06-05 09:11:35 -04:00
|
|
|
("#laptop" . ?l)
|
|
|
|
("#tcult" . ?t)
|
|
|
|
("#phone" . ?p)
|
2018-05-19 15:09:15 -04:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
;; (%) misc tags
|
|
|
|
;; denotes reference information
|
2018-05-19 15:09:15 -04:00
|
|
|
("%note" . ?n)
|
2018-11-22 00:23:46 -05:00
|
|
|
|
|
|
|
;; incubator
|
2018-05-19 15:09:15 -04:00
|
|
|
("%inc" . ?i)
|
2018-11-22 00:23:46 -05:00
|
|
|
|
|
|
|
;; denotes tasks that need further subdivision to turn into true project
|
2018-05-19 15:09:15 -04:00
|
|
|
("%subdiv" . ?s)
|
2018-11-22 00:23:46 -05:00
|
|
|
|
|
|
|
;; catchall to mark important headings, usually for meetings
|
2018-09-16 14:09:53 -04:00
|
|
|
("%flag" . ?f)
|
2018-05-19 15:09:15 -04:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
;; (_) life categories, used for gtd priority context
|
2018-05-19 15:09:15 -04:00
|
|
|
(:startgroup)
|
|
|
|
("_env" . ?E)
|
|
|
|
("_fin" . ?F)
|
|
|
|
("_int" . ?I)
|
|
|
|
("_met" . ?M)
|
|
|
|
("_phy" . ?H)
|
|
|
|
("_pro" . ?P)
|
|
|
|
("_rec" . ?R)
|
|
|
|
("_soc" . ?S)
|
|
|
|
(:endgroup)))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(defun nd/add-tag-face (fg-name prefix)
|
|
|
|
"Adds list of cons cells to org-tag-faces with foreground set to fg-name.
|
|
|
|
Start and end specify the positions in org-tag-alist which define the tags
|
|
|
|
to which the faces are applied"
|
|
|
|
(dolist (tag (nd/filter-list-prefix prefix (mapcar #'car org-tag-alist)))
|
|
|
|
(push `(,tag . (:foreground ,fg-name)) org-tag-faces)))
|
2018-05-15 22:55:11 -04:00
|
|
|
|
2018-05-19 15:09:15 -04:00
|
|
|
(setq org-tag-faces '())
|
2018-05-15 22:55:11 -04:00
|
|
|
|
2018-05-19 15:09:15 -04:00
|
|
|
(nd/add-tag-face "PaleGreen" "@")
|
|
|
|
(nd/add-tag-face "SkyBlue" "#")
|
|
|
|
(nd/add-tag-face "PaleGoldenrod" "%")
|
|
|
|
(nd/add-tag-face "violet" "_")
|
2018-11-22 00:23:46 -05:00
|
|
|
|
2018-07-21 02:24:45 -04:00
|
|
|
(mapc (lambda (i) (add-to-list 'org-default-properties i))
|
2018-11-22 00:23:46 -05:00
|
|
|
;; defines a repeater group
|
2018-11-22 00:49:47 -05:00
|
|
|
'("PARENT_TYPE"
|
2018-11-22 00:23:46 -05:00
|
|
|
;; defines the time shift for repeater groups
|
|
|
|
|
|
|
|
"TIME_SHIFT"
|
|
|
|
;; assigns another person/entity to a task (experimental)
|
|
|
|
|
|
|
|
"DELEGATE"
|
|
|
|
|
|
|
|
;; defines a goal (not currently used)
|
|
|
|
"GOAL"))
|
2018-05-04 20:36:22 -04:00
|
|
|
|
2018-05-19 15:36:04 -04:00
|
|
|
(setq org-global-properties
|
|
|
|
'(("PARENT_TYPE_ALL" . "periodical iterator")
|
2018-07-21 02:24:45 -04:00
|
|
|
("Effort_ALL" . "0:05 0:15 0:30 1:00 1:30 2:00 3:00 4:00 5:00 6:00"))
|
2018-05-19 15:36:04 -04:00
|
|
|
|
2018-11-22 00:49:47 -05:00
|
|
|
org-use-property-inheritance
|
|
|
|
'("PARENT_TYPE" "TIME_SHIFT"))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-10-04 14:13:49 -04:00
|
|
|
(defun nd/org-timestamp-future (days)
|
|
|
|
"Inserts an active org timestamp DAYS after the current time."
|
|
|
|
(format-time-string (org-time-stamp-format nil)
|
2018-11-22 00:49:47 -05:00
|
|
|
(time-add (current-time) (days-to-time 1))))
|
2018-10-04 14:13:49 -04:00
|
|
|
|
2018-05-19 15:03:12 -04:00
|
|
|
(let ((capfile "~/Org/capture.org"))
|
|
|
|
(setq org-capture-templates
|
2018-11-22 00:23:46 -05:00
|
|
|
;; regular TODO task
|
2018-07-03 23:30:02 -04:00
|
|
|
`(("t" "todo" entry (file ,capfile)
|
2018-11-28 00:01:31 -05:00
|
|
|
"* TODO %?\n%U\ndeliverable: \n")
|
2018-07-03 23:30:02 -04:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
;; for useful reference information that may be grouped with tasks
|
2018-07-03 23:30:02 -04:00
|
|
|
("n" "note" entry (file ,capfile)
|
2018-11-22 00:49:47 -05:00
|
|
|
"* %? :\\%note:\n%U\n")
|
2018-07-03 23:30:02 -04:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
;; for non-actionable events that happen at a certain time
|
2018-07-03 23:30:02 -04:00
|
|
|
("a" "appointment" entry (file ,capfile)
|
2018-11-22 00:49:47 -05:00
|
|
|
"* %?\n%U\n%^t\n")
|
2018-07-03 23:30:02 -04:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
;; like appointment but multiple days
|
2018-09-16 14:06:40 -04:00
|
|
|
("s" "appointment-span" entry (file ,capfile)
|
2018-11-28 00:01:31 -05:00
|
|
|
"* %?\n%U\n%^t--%^t\n")
|
2018-07-03 23:30:02 -04:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
;; task with a deadline
|
2018-07-03 23:30:02 -04:00
|
|
|
("d" "deadline" entry (file ,capfile)
|
2018-11-22 00:49:47 -05:00
|
|
|
"* TODO %?\nDEADLINE: %^t\ndeliverable:\n%U\n")
|
2018-07-03 23:30:02 -04:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
;; for converting mu4e emails to tasks, defaults to next-day deadline
|
2018-11-22 00:49:47 -05:00
|
|
|
("e" "email" entry (file ,capfile)
|
|
|
|
"* TODO Respond to %:fromname; Re: %:subject :#laptop:\nDEADLINE: %(nd/org-timestamp-future 1)\n%U\n%a\n")
|
2018-09-16 14:06:40 -04:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
;; for interruptions that produce useful reference material
|
2018-11-22 00:49:47 -05:00
|
|
|
("m" "meeting" entry (file ,capfile)
|
|
|
|
"* meeting with%? :\\%note:\n%U\n")
|
2018-11-24 20:38:17 -05:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
;; for capturing web pages with web browser
|
2018-11-22 00:49:47 -05:00
|
|
|
("p" "org-protocol" entry (file ,capfile)
|
2018-07-13 20:05:50 -04:00
|
|
|
"* %^{Title} :\\%note:\n%u\n#+BEGIN_QUOTE\n%i\n#+END_QUOTE"
|
2018-11-22 00:49:47 -05:00
|
|
|
:immediate-finish t)
|
2018-07-03 23:30:02 -04:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
;; or capturing links with web browser
|
2018-11-22 00:49:47 -05:00
|
|
|
("L" "org-protocol link" entry (file ,capfile)
|
2018-07-13 20:05:50 -04:00
|
|
|
"* %^{Title} :\\%note:\n[[%:link][%:description]]\n%U"
|
2018-11-22 00:49:47 -05:00
|
|
|
:immediate-finish t))))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(add-hook 'org-capture-mode-hook (lambda () (evil-append 1)))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-21 02:24:45 -04:00
|
|
|
(setq org-refile-targets '((nil :maxlevel . 9)
|
|
|
|
("~/Org/reference/idea.org" :maxlevel . 9)
|
|
|
|
(org-agenda-files :maxlevel . 9))
|
2018-11-22 00:49:47 -05:00
|
|
|
org-refile-use-outline-path t
|
|
|
|
org-outline-path-complete-in-steps nil
|
|
|
|
org-refile-allow-creating-parent-nodes 'confirm
|
|
|
|
org-indirect-buffer-display 'current-window)
|
2018-11-22 00:23:46 -05:00
|
|
|
|
2018-07-21 02:24:45 -04:00
|
|
|
(setq org-refile-target-verify-function
|
2018-11-22 00:49:47 -05:00
|
|
|
(lambda () (not (member (nth 2 (org-heading-components)) org-done-keywords))))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
|
|
|
;; TODO this no work, although does work if var is global
|
|
|
|
;; redfining the targets works for now
|
|
|
|
(add-hook 'org-agenda-mode-hook
|
|
|
|
(lambda ()
|
|
|
|
(when (equal (buffer-name) "*Org Agenda(A)*")
|
|
|
|
(setq-local org-refile-targets
|
|
|
|
'(("~/Org/journal/goals.org" :maxlevel . 9))))))
|
|
|
|
;; (lambda () (when (org-entry-get nil "GOAL") t))))))
|
|
|
|
;; (setq org-refile-targets '((nil :maxlevel . 9)
|
|
|
|
;; ("~/Org/reference/idea.org" :maxlevel . 9)
|
|
|
|
;; ("~/Org/journal/goals.org" :maxlevel . 9)
|
|
|
|
;; (org-agenda-files :maxlevel . 9))
|
|
|
|
|
2018-08-21 22:45:02 -04:00
|
|
|
(setq org-clock-history-length 23
|
2018-11-22 00:49:47 -05:00
|
|
|
org-clock-out-when-done t
|
|
|
|
org-clock-persist t
|
|
|
|
org-clock-report-include-clocking-task t)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-22 23:56:59 -05:00
|
|
|
(defun nd/are-conflicting-p (ts-a ts-b)
|
|
|
|
"Return t if timestamps TS-A and TS-B conflict."
|
|
|
|
(let* ((earlier-a (car ts-a))
|
|
|
|
(earlier-b (car ts-b))
|
|
|
|
(later-b (+ earlier-b (nth 1 ts-b))))
|
|
|
|
(and (>= earlier-a earlier-b) (<= earlier-a later-b))))
|
|
|
|
|
|
|
|
(defun nd/detect-conflict (ts ts-list conlist)
|
|
|
|
"Recursively determine if timestamp TS conflicts with anything in TS-LIST.
|
|
|
|
If detected, conflict pair is added to CONLIST."
|
|
|
|
(let ((next-ts (car ts-list))
|
|
|
|
(rem-ts (cdr ts-list)))
|
|
|
|
(if (nd/are-conflicting-p ts next-ts)
|
|
|
|
(progn
|
2018-11-24 22:36:08 -05:00
|
|
|
(setq conlist (cons (list ts next-ts) conlist))
|
2018-11-22 23:56:59 -05:00
|
|
|
(if rem-ts (nd/detect-conflict ts rem-ts conlist) conlist))
|
|
|
|
conlist)))
|
|
|
|
|
|
|
|
(defun nd/build-conlist (ts-list conlist)
|
|
|
|
"Recursively build a list of timestamp conflicts from TS-LIST.
|
|
|
|
|
|
|
|
TS-LIST is comprised of entries in the form (staring-ts timerange marker)
|
|
|
|
where timerange is 0 for singular timestamps and a positive number for
|
|
|
|
anything with to times or a timestamp range.
|
|
|
|
Detected conflicts are stored in CONLIST as pairs of conflicting ts
|
|
|
|
entries from the TS-LIST."
|
|
|
|
(let ((cur-ts (car ts-list))
|
|
|
|
(rem-ts (cdr ts-list)))
|
|
|
|
(if rem-ts
|
|
|
|
(nd/build-conlist rem-ts (nd/detect-conflict cur-ts rem-ts conlist))
|
|
|
|
conlist)))
|
|
|
|
|
|
|
|
(defconst nd/org-tsm-regexp
|
|
|
|
"\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} [^]+0-9>\r\n -]+? \\)\\([0-9]\\{1,2\\}:[0-9]\\{2\\}?\\)-\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
|
|
|
|
"Regular expression for timestamps with two times.")
|
|
|
|
|
|
|
|
(defun nd/get-timestamps ()
|
|
|
|
"Get the org-marker and timestamp(s) (multiple if range) or current heading."
|
|
|
|
;; TODO, what if I care about more than just TIMESTAMPs
|
|
|
|
(let* ((ts (org-entry-get nil "TIMESTAMP"))
|
|
|
|
(marker (point-marker))
|
|
|
|
(ts-range 0)
|
|
|
|
(ts-entry))
|
|
|
|
(when ts
|
|
|
|
(cond
|
|
|
|
;; match timestamps that have two times
|
|
|
|
((string-match nd/org-tsm-regexp ts)
|
|
|
|
(let* ((ts1 (concat (match-string 1 ts) (match-string 2 ts)))
|
|
|
|
(ts2 (concat (match-string 1 ts) (match-string 3 ts)))
|
|
|
|
(ft1 (org-2ft ts1))
|
|
|
|
(ft2 (org-2ft ts2)))
|
|
|
|
(setq ts-entry ft1)
|
|
|
|
(setq ts-range (- ft2 ft1))))
|
|
|
|
|
|
|
|
;; match timestamps that have a range (eq two timestamps)
|
|
|
|
((string-match org-tr-regexp ts)
|
|
|
|
(let* ((ts1 (match-string 1 ts))
|
|
|
|
(ts2 (match-string 2 ts))
|
|
|
|
(ft1 (org-2ft ts1))
|
|
|
|
(ft2 (org-2ft ts2)))
|
|
|
|
(setq ts-entry ft1)
|
|
|
|
(setq ts-range (- ft2 ft1))))
|
|
|
|
|
|
|
|
;; match timestamps with only one time
|
|
|
|
(t (setq ts-entry (org-2ft ts))))
|
2018-11-24 22:36:08 -05:00
|
|
|
(list ts-entry ts-range marker ts))))
|
2018-11-22 23:56:59 -05:00
|
|
|
|
|
|
|
(defun nd/build-conflict-list ()
|
|
|
|
"Scan all org files and make a list of all timestamps that conflict."
|
2018-11-24 23:08:05 -05:00
|
|
|
(let ((files (org-agenda-files))
|
|
|
|
max-reached ts-list cur-index conflicts)
|
2018-11-22 23:56:59 -05:00
|
|
|
;; get all timestamps from org buffers
|
|
|
|
(dolist (f files ts-list)
|
|
|
|
(with-current-buffer
|
|
|
|
(find-file-noselect f)
|
|
|
|
(goto-char (point-min))
|
2018-11-24 23:08:05 -05:00
|
|
|
(when (not (outline-on-heading-p)) (outline-next-heading))
|
|
|
|
(setq max-reached nil)
|
|
|
|
(while (not max-reached)
|
2018-11-22 23:56:59 -05:00
|
|
|
(let ((new-ts (nd/get-timestamps)))
|
|
|
|
(if new-ts (setq ts-list (cons new-ts ts-list))))
|
2018-11-24 23:08:05 -05:00
|
|
|
(unless (outline-next-heading) (setq max-reached t)))))
|
2018-11-22 23:56:59 -05:00
|
|
|
|
|
|
|
;; sort the timestamp list
|
|
|
|
;; TODO, need to make range-aware
|
|
|
|
(setq ts-list (sort ts-list (lambda (a b) (< (car a) (car b)))))
|
|
|
|
|
|
|
|
;; build a list of conflicts
|
|
|
|
(nd/build-conlist ts-list conflicts)))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-23 19:56:40 -05:00
|
|
|
(defun nd/get-conflict-header-text (conflict-marker)
|
|
|
|
"Return string with text properties representing the org header for
|
|
|
|
MARKER for use in the conflict agenda view."
|
|
|
|
(let* ((props (list
|
|
|
|
'face nil
|
|
|
|
'done-face 'org-agenda-done
|
|
|
|
'org-not-done-regexp org-not-done-regexp
|
|
|
|
'org-todo-regexp org-todo-regexp
|
|
|
|
'org-complex-heading-regexp org-complex-heading-regexp
|
|
|
|
'mouse-face 'highlight))
|
|
|
|
;; 'help-echo
|
|
|
|
;; (format "mouse-2 or RET jump to org file %s"
|
|
|
|
;; (abbreviate-file-name buffer-file-name))))
|
|
|
|
marker priority category level tags todo-state
|
|
|
|
ts-date ts-date-type ts-date-pair
|
|
|
|
txt beg end inherited-tags todo-state-end-pos)
|
|
|
|
|
|
|
|
(with-current-buffer (marker-buffer conflict-marker)
|
|
|
|
(save-excursion
|
|
|
|
(goto-char conflict-marker)
|
|
|
|
|
|
|
|
(setq marker (org-agenda-new-marker (point))
|
|
|
|
category (org-get-category)
|
|
|
|
ts-date-pair (org-agenda-entry-get-agenda-timestamp (point))
|
|
|
|
ts-date (car ts-date-pair)
|
|
|
|
ts-date-type (cdr ts-date-pair)
|
|
|
|
txt (org-get-heading t)
|
|
|
|
inherited-tags
|
|
|
|
(or (eq org-agenda-show-inherited-tags 'always)
|
|
|
|
(and (listp org-agenda-show-inherited-tags)
|
|
|
|
(memq 'todo org-agenda-show-inherited-tags))
|
|
|
|
(and (eq org-agenda-show-inherited-tags t)
|
|
|
|
(or (eq org-agenda-use-tag-inheritance t)
|
|
|
|
(memq 'todo org-agenda-use-tag-inheritance))))
|
|
|
|
tags (org-get-tags-at nil (not inherited-tags))
|
|
|
|
level (make-string (org-reduced-level (org-outline-level)) ? )
|
|
|
|
txt (org-agenda-format-item "" txt level category tags t)
|
|
|
|
priority (1+ (org-get-priority txt)))
|
|
|
|
|
|
|
|
(org-add-props txt props
|
|
|
|
'org-marker marker 'org-hd-marker marker
|
|
|
|
'priority priority
|
|
|
|
'level level
|
|
|
|
'ts-date ts-date
|
2018-11-24 22:36:08 -05:00
|
|
|
'type "timestamp")))))
|
2018-11-23 19:56:40 -05:00
|
|
|
|
|
|
|
(defun nd/org-conflicts (&optional arg)
|
|
|
|
(interactive "P")
|
|
|
|
|
|
|
|
(if org-agenda-overriding-arguments
|
|
|
|
(setq arg org-agenda-overriding-arguments))
|
|
|
|
|
|
|
|
(if (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
|
|
|
|
|
|
|
|
(let* ((today (org-today))
|
|
|
|
(date (calendar-gregorian-from-absolute today))
|
|
|
|
(completion-ignore-case t)
|
2018-11-24 22:36:08 -05:00
|
|
|
(org-agenda-prefix-format '((agenda . " %-12:c %-5:e ")))
|
2018-11-23 19:56:40 -05:00
|
|
|
rtn rtnall files file pos)
|
|
|
|
|
|
|
|
(catch 'exit
|
|
|
|
(when org-agenda-sticky (setq org-agenda-buffer-name "*Org Conflicts*"))
|
|
|
|
|
|
|
|
(org-agenda-prepare)
|
|
|
|
;; (org-compile-prefix-format 'todo)
|
|
|
|
(org-compile-prefix-format 'agenda)
|
|
|
|
;; (org-set-sorting-strategy 'todo)
|
|
|
|
|
|
|
|
(setq org-agenda-redo-command '(nd/org-conflicts))
|
|
|
|
|
|
|
|
(insert "Conflicting Headings: \n")
|
|
|
|
(add-text-properties (point-min) (1- (point))
|
|
|
|
(list 'face 'org-agenda-structure
|
|
|
|
'short-heading "Conflicts"))
|
|
|
|
(org-agenda-mark-header-line (point-min))
|
|
|
|
|
2018-11-24 22:36:08 -05:00
|
|
|
(setq rtnall (nd/build-conflict-list))
|
2018-11-23 19:56:40 -05:00
|
|
|
(when rtnall
|
2018-11-24 22:36:08 -05:00
|
|
|
(mapc
|
|
|
|
(lambda (c)
|
|
|
|
(insert (concat "Between " (mapconcat (lambda (ts) (nth 3 ts)) c " and ") "\n"))
|
|
|
|
(insert (concat (mapconcat (lambda (ts) (nd/get-conflict-header-text (nth 2 ts))) c "\n") "\n"))
|
|
|
|
(insert "\n"))
|
|
|
|
rtnall))
|
2018-11-23 19:56:40 -05:00
|
|
|
|
|
|
|
;; clean up and finalize
|
|
|
|
(goto-char (point-min))
|
|
|
|
(or org-agenda-multi (org-agenda-fit-window-to-buffer))
|
|
|
|
(add-text-properties
|
|
|
|
(point-min) (point-max)
|
2018-11-24 22:36:08 -05:00
|
|
|
`(org-agenda-type agenda
|
2018-11-23 19:56:40 -05:00
|
|
|
org-last-args ,arg
|
|
|
|
org-redo-cmd ,org-agenda-redo-command
|
|
|
|
org-series-cmd ,org-cmd))
|
|
|
|
(org-agenda-finalize)
|
|
|
|
(setq buffer-read-only t))))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(setq org-agenda-files '("~/Org"
|
|
|
|
"~/Org/projects"
|
|
|
|
"~/Org/reference/peripheral.org"))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(setq org-agenda-sticky t)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(add-hook 'org-finalize-agenda-hook
|
2018-11-22 00:49:47 -05:00
|
|
|
(lambda () (setq org-agenda-tags-column (- 4 (window-width)))
|
|
|
|
(org-agenda-align-tags)))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(setq org-agenda-prefix-format
|
|
|
|
'((agenda . " %-12:c %-5:e %?-12t% s")
|
|
|
|
(todo . " %-12:c")
|
|
|
|
(tags . " %-12:c %-5:e ")
|
|
|
|
(search . " %-12:c")))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(setq org-agenda-dim-blocked-tasks nil
|
2018-11-22 00:49:47 -05:00
|
|
|
org-agenda-compact-blocks t
|
|
|
|
org-agenda-window-setup 'current-window
|
2018-11-22 00:23:46 -05:00
|
|
|
org-agenda-start-on-weekday 0
|
2018-11-22 00:49:47 -05:00
|
|
|
org-agenda-span 'day
|
|
|
|
org-agenda-current-time-string "### -- NOW -- ###")
|
2018-11-22 00:23:46 -05:00
|
|
|
|
|
|
|
(setq org-habit-graph-column 50)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-09-29 16:27:13 -04:00
|
|
|
(defun nd/org-agenda-filter-non-context ()
|
|
|
|
"Filter all tasks with context tags."
|
|
|
|
(interactive)
|
|
|
|
(let* ((tags-list (mapcar #'car org-tag-alist))
|
|
|
|
(context-tags (append
|
|
|
|
(nd/filter-list-prefix "@" tags-list)
|
|
|
|
(nd/filter-list-prefix "#" tags-list))))
|
|
|
|
(setq org-agenda-tag-filter
|
|
|
|
(mapcar (lambda (tag) (concat "-" tag)) context-tags))
|
|
|
|
(org-agenda-filter-apply org-agenda-tag-filter 'tag)))
|
|
|
|
|
|
|
|
(defun nd/org-agenda-filter-non-peripheral ()
|
|
|
|
"Filter all tasks that don't have peripheral tags."
|
|
|
|
(interactive)
|
|
|
|
(let* ((peripheral-tags '("PERIPHERAL")))
|
|
|
|
(setq org-agenda-tag-filter
|
|
|
|
(mapcar (lambda (tag) (concat "-" tag)) peripheral-tags))
|
|
|
|
(org-agenda-filter-apply org-agenda-tag-filter 'tag)))
|
|
|
|
|
|
|
|
(defun nd/org-agenda-filter-non-effort ()
|
|
|
|
"Filter agenda by non-effort tasks."
|
|
|
|
(interactive)
|
|
|
|
(setq org-agenda-hasprop-filter '("-Effort"))
|
|
|
|
(org-agenda-filter-apply org-agenda-hasprop-filter 'hasprop))
|
2018-09-29 16:40:07 -04:00
|
|
|
|
|
|
|
(defun nd/org-agenda-filter-delegate ()
|
|
|
|
"Filter agenda by tasks with an external delegate."
|
|
|
|
(interactive)
|
|
|
|
(setq org-agenda-hasprop-filter '("+DELEGATE"))
|
|
|
|
(org-agenda-filter-apply org-agenda-hasprop-filter 'hasprop))
|
2018-09-29 16:27:13 -04:00
|
|
|
|
2018-09-30 22:20:15 -04:00
|
|
|
;; initialize new filters
|
|
|
|
(defvar org-agenda-hasprop-filter nil)
|
|
|
|
|
2018-09-29 16:27:13 -04:00
|
|
|
(defun nd/org-agenda-filter-make-matcher-prop
|
2018-11-22 00:49:47 -05:00
|
|
|
(filter type &rest args)
|
2018-09-29 16:27:13 -04:00
|
|
|
"Return matching matcher form for FILTER and TYPE where TYPE is not
|
|
|
|
in the regular `org-agenda-filter-make-matcher' function. This is
|
|
|
|
intended to be uses as :before-until advice and will return nil if
|
|
|
|
the type is not valid (which is currently 'prop')"
|
|
|
|
(let (f f1)
|
2018-11-22 00:49:47 -05:00
|
|
|
;; has property
|
|
|
|
(cond
|
|
|
|
((eq type 'hasprop)
|
2018-09-29 16:27:13 -04:00
|
|
|
(dolist (x filter)
|
2018-11-22 00:49:47 -05:00
|
|
|
(push (nd/org-agenda-filter-make-matcher-hasprop-exp x) f))))
|
2018-09-29 16:27:13 -04:00
|
|
|
(if f (cons 'and (nreverse f)))))
|
|
|
|
|
|
|
|
(defun nd/org-agenda-filter-make-matcher-hasprop-exp (h)
|
|
|
|
"Returns form to test the presence or absence of properties H.
|
|
|
|
H is a string like +prop or -prop"
|
|
|
|
(let (op)
|
|
|
|
(let* ((op (string-to-char h))
|
2018-11-22 00:49:47 -05:00
|
|
|
(h (substring h 1))
|
|
|
|
(f `(save-excursion
|
|
|
|
(let ((m (org-get-at-bol 'org-hd-marker)))
|
|
|
|
(with-current-buffer
|
|
|
|
(marker-buffer m)
|
|
|
|
(goto-char m)
|
|
|
|
(org-entry-get nil ,h))))))
|
|
|
|
(if (eq op ?-) (list 'not f) f))))
|
2018-09-29 16:27:13 -04:00
|
|
|
|
|
|
|
(defun nd/org-agenda-filter-show-all-hasprop nil
|
|
|
|
(org-agenda-remove-filter 'hasprop))
|
|
|
|
|
|
|
|
(advice-add #'org-agenda-filter-make-matcher :before-until
|
2018-11-22 00:49:47 -05:00
|
|
|
#'nd/org-agenda-filter-make-matcher-prop)
|
2018-09-29 16:27:13 -04:00
|
|
|
|
|
|
|
(advice-add #'org-agenda-filter-remove-all :before
|
2018-11-22 00:49:47 -05:00
|
|
|
(lambda () (when org-agenda-hasprop-filter
|
|
|
|
(nd/org-agenda-filter-show-all-hasprop))))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-12-06 22:54:48 -05:00
|
|
|
(setq org-agenda-bulk-custom-functions
|
|
|
|
'((?D nd/org-agenda-delete-subtree)))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-21 02:24:45 -04:00
|
|
|
(setq holiday-bahai-holidays nil
|
2018-11-22 00:49:47 -05:00
|
|
|
holiday-hebrew-holidays nil
|
|
|
|
holiday-oriental-holidays nil
|
|
|
|
holiday-islamic-holidays nil)
|
2018-08-19 10:27:55 -04:00
|
|
|
|
|
|
|
(setq calendar-holidays (append holiday-general-holidays
|
2018-11-22 00:49:47 -05:00
|
|
|
holiday-christian-holidays))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(defconst nd/iter-future-time (* 7 24 60 60)
|
|
|
|
"Iterators must have at least one task greater into the future to be active.")
|
|
|
|
|
|
|
|
(defconst nd/iter-statuscodes '(:uninit :empty :active)
|
|
|
|
"Iterators can have these statuscodes.")
|
|
|
|
|
|
|
|
(defconst nd/peri-future-time nd/iter-future-time
|
|
|
|
"Periodicals must have at least one heading greater into the future to be fresh.")
|
|
|
|
|
|
|
|
(defconst nd/peri-statuscodes '(:uninit :stale :fresh))
|
|
|
|
|
|
|
|
(defconst nd/project-invalid-todostates
|
|
|
|
'("WAIT" "NEXT")
|
|
|
|
"Projects cannot have these todostates.")
|
|
|
|
|
|
|
|
(defvar nd/agenda-limit-project-toplevel t
|
|
|
|
"If true, filter projects by all levels or top level only.")
|
|
|
|
|
|
|
|
(defvar nd/agenda-hide-incubator-tags t
|
|
|
|
"If true, don't show incubator headings.")
|
|
|
|
|
|
|
|
(defconst nd/org-agenda-todo-sort-order
|
|
|
|
'("NEXT" "WAIT" "HOLD" "TODO")
|
|
|
|
"Defines the order in which todo keywords should be sorted.")
|
|
|
|
|
|
|
|
(defconst nd/project-skip-todostates
|
|
|
|
'("HOLD" "CANC")
|
|
|
|
"These keywords override all contents within their subtrees.
|
|
|
|
Currently used to tell skip functions when they can hop over
|
|
|
|
entire subtrees to save time and ignore tasks")
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(defun nd/get-date-property (timestamp-property)
|
|
|
|
"Get TIMESTAMP-PROPERTY on current heading and convert to a number.
|
2018-06-21 22:35:03 -04:00
|
|
|
If it does not have a date, it will return nil."
|
2018-11-23 00:00:05 -05:00
|
|
|
(let ((ts (org-entry-get nil timestamp-property)))
|
|
|
|
(when ts (org-2ft ts))))
|
2018-06-21 22:35:03 -04:00
|
|
|
|
|
|
|
(defun nd/heading-compare-timestamp (timestamp-fun
|
2018-11-22 00:49:47 -05:00
|
|
|
&optional ref-time future)
|
2018-11-22 00:23:46 -05:00
|
|
|
"Returns the timestamp (from TIMESTAMP-FUM on the current heading)
|
|
|
|
if timestamp is futher back in time compared to a REF-TIME (default to
|
|
|
|
0 which is now, where negative is past and positive is future). If the
|
|
|
|
FUTURE flag is t, returns timestamp if it is in the future compared
|
|
|
|
to REF-TIME. Returns nil if no timestamp is found."
|
2018-06-21 22:35:03 -04:00
|
|
|
(let* ((timestamp (funcall timestamp-fun))
|
|
|
|
(ref-time (or ref-time 0)))
|
|
|
|
(if (and timestamp
|
|
|
|
(if future
|
|
|
|
(> (- timestamp (float-time)) ref-time)
|
|
|
|
(<= (- timestamp (float-time)) ref-time)))
|
|
|
|
timestamp)))
|
|
|
|
|
2018-12-02 01:16:57 -05:00
|
|
|
(defun nd/is-ia-timestamped-heading-p ()
|
|
|
|
"Get active timestamp of current heading."
|
|
|
|
(nd/get-date-property "TIMESTAMP_IA"))
|
|
|
|
|
2018-06-21 22:35:03 -04:00
|
|
|
(defun nd/is-timestamped-heading-p ()
|
2018-11-22 00:23:46 -05:00
|
|
|
"Get active timestamp of current heading."
|
2018-06-21 22:35:03 -04:00
|
|
|
(nd/get-date-property "TIMESTAMP"))
|
|
|
|
|
|
|
|
(defun nd/is-scheduled-heading-p ()
|
2018-11-22 00:23:46 -05:00
|
|
|
"Get scheduled timestamp of current heading."
|
2018-06-21 22:35:03 -04:00
|
|
|
(nd/get-date-property "SCHEDULED"))
|
|
|
|
|
|
|
|
(defun nd/is-deadlined-heading-p ()
|
2018-11-22 00:23:46 -05:00
|
|
|
"Get deadline timestamp of current heading."
|
2018-06-21 22:35:03 -04:00
|
|
|
(nd/get-date-property "DEADLINE"))
|
|
|
|
|
|
|
|
(defun nd/is-closed-heading-p ()
|
2018-11-22 00:23:46 -05:00
|
|
|
"Get closed timestamp of current heading."
|
2018-06-21 22:35:03 -04:00
|
|
|
(nd/get-date-property "CLOSED"))
|
|
|
|
|
2018-11-23 20:16:00 -05:00
|
|
|
(defun nd/is-stale-heading-p (&optional ts-prop)
|
|
|
|
"Return timestamp for TS-PROP (TIMESTAMP by default) if current heading is stale."
|
2018-06-21 22:35:03 -04:00
|
|
|
(nd/heading-compare-timestamp
|
2018-11-23 20:16:00 -05:00
|
|
|
(lambda () (let ((ts (org-entry-get nil (or ts-prop "TIMESTAMP"))))
|
|
|
|
(when (and ts (not (find ?+ ts))) (org-2ft ts))))))
|
2018-06-21 22:35:03 -04:00
|
|
|
|
|
|
|
(defun nd/is-fresh-heading-p ()
|
2018-11-22 00:23:46 -05:00
|
|
|
"Return timestamp if current heading is fresh."
|
2018-06-21 22:35:03 -04:00
|
|
|
(nd/heading-compare-timestamp 'nd/is-timestamped-heading-p nil t))
|
|
|
|
|
|
|
|
(defvar nd/archive-delay-days 30
|
2018-11-22 00:23:46 -05:00
|
|
|
"The number of days to wait before tasks show up in the archive view.")
|
2018-06-21 22:35:03 -04:00
|
|
|
|
|
|
|
(defun nd/is-archivable-heading-p ()
|
2018-11-22 00:23:46 -05:00
|
|
|
"Return timestamp if current heading is archivable."
|
2018-06-21 22:35:03 -04:00
|
|
|
(nd/heading-compare-timestamp
|
|
|
|
'nd/is-closed-heading-p
|
|
|
|
(- (* 60 60 24 nd/archive-delay-days))))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(defun nd/is-todoitem-p ()
|
|
|
|
"Return todo keyword if heading has one."
|
|
|
|
(let ((keyword (nth 2 (org-heading-components))))
|
|
|
|
(if (member keyword org-todo-keywords-1)
|
|
|
|
keyword)))
|
2018-03-24 18:13:54 -04:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(defun nd/is-project-p ()
|
|
|
|
"Return todo keyword if heading has todoitem children."
|
|
|
|
(and (nd/heading-has-children 'nd/is-todoitem-p) (nd/is-todoitem-p)))
|
2018-05-04 20:36:22 -04:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(defun nd/is-task-p ()
|
|
|
|
"Return todo keyword if heading has todoitem children."
|
|
|
|
(and (not (nd/heading-has-children 'nd/is-todoitem-p)) (nd/is-todoitem-p)))
|
2018-05-04 20:36:22 -04:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(defun nd/is-project-task-p ()
|
|
|
|
"Return todo keyword if heading has todoitem parents."
|
|
|
|
(and (nd/heading-has-parent 'nd/is-todoitem-p) (nd/is-task-p)))
|
2018-05-13 20:15:00 -04:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(defun nd/is-atomic-task-p ()
|
|
|
|
"Return todo keyword if heading has no todoitem parents or children."
|
|
|
|
(and (not (nd/heading-has-parent 'nd/is-todoitem-p)) (nd/is-task-p)))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(defun nd/is-periodical-heading-p ()
|
|
|
|
"Return t if heading is a periodical."
|
|
|
|
(equal "periodical" (org-entry-get nil "PARENT_TYPE" t)))
|
2018-03-22 00:32:17 -04:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(defun nd/is-iterator-heading-p ()
|
|
|
|
"Return t if heading is an iterator."
|
|
|
|
(equal "iterator" (org-entry-get nil "PARENT_TYPE" t)))
|
2018-05-13 20:15:00 -04:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(defun nd/heading-has-effort-p ()
|
|
|
|
"Return t if heading has an effort."
|
|
|
|
(org-entry-get nil "Effort"))
|
2018-05-13 20:15:00 -04:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(defun nd/heading-has-context-p ()
|
|
|
|
"Return t if heading has a context."
|
|
|
|
(let ((tags (org-get-tags-at)))
|
|
|
|
(or (> (length (nd/filter-list-prefix "#" tags)) 0)
|
|
|
|
(> (length (nd/filter-list-prefix "@" tags)) 0))))
|
2018-05-15 22:55:11 -04:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(defun nd/heading-has-tag-p (tag)
|
|
|
|
"Return t if heading has tag TAG."
|
|
|
|
(member tag (org-get-tags-at)))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(defun nd/heading-has-children (heading-test)
|
|
|
|
"Return t if heading has a child for whom HEADING-TEST is t."
|
|
|
|
(let ((subtree-end (save-excursion (org-end-of-subtree t)))
|
|
|
|
has-children previous-point)
|
|
|
|
(save-excursion
|
|
|
|
(setq previous-point (point))
|
|
|
|
(outline-next-heading)
|
|
|
|
(while (and (not has-children)
|
|
|
|
(< previous-point (point) subtree-end))
|
|
|
|
(when (funcall heading-test)
|
|
|
|
(setq has-children t))
|
2018-05-04 22:13:10 -04:00
|
|
|
(setq previous-point (point))
|
2018-11-22 00:23:46 -05:00
|
|
|
(org-forward-heading-same-level 1 t)))
|
|
|
|
has-children))
|
|
|
|
|
|
|
|
(defun nd/heading-has-parent (heading-test)
|
|
|
|
"Return t if heading has parent for whom HEADING-TEST is t."
|
|
|
|
(save-excursion (and (org-up-heading-safe) (funcall heading-test))))
|
2018-06-24 17:47:07 -04:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(defun nd/has-discontinuous-parent ()
|
|
|
|
"Return t if heading has a non-todoitem parent which in turn has a todoitem parent."
|
|
|
|
(let ((has-todoitem-parent)
|
|
|
|
(has-non-todoitem-parent))
|
|
|
|
(save-excursion
|
|
|
|
(while (and (org-up-heading-safe)
|
|
|
|
(not has-todoitem-parent))
|
|
|
|
(if (nd/is-todoitem-p)
|
|
|
|
(setq has-todoitem-parent t)
|
|
|
|
(setq has-non-todoitem-parent t))))
|
|
|
|
(and has-todoitem-parent has-non-todoitem-parent)))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-06-26 20:23:45 -04:00
|
|
|
(defmacro nd/compare-statuscodes (op sc1 sc2 sc-list)
|
2018-11-22 00:23:46 -05:00
|
|
|
"Compare position of statuscodes SC1 and SC2 in SC-LIST using operator OP."
|
2018-06-18 22:19:07 -04:00
|
|
|
`(,op (position ,sc1 ,sc-list) (position ,sc2 ,sc-list)))
|
2018-06-24 17:47:07 -04:00
|
|
|
|
2018-11-20 22:19:05 -05:00
|
|
|
(defun nd/descend-into-project (allowed-statuscodes trans-tbl get-task-status)
|
2018-11-22 00:23:46 -05:00
|
|
|
"Loop through (sub)project and return overall statuscode.
|
|
|
|
|
|
|
|
The returned statuscode is chosen from list ALLOWED-STATUSCODES where
|
|
|
|
later entries in the list trump earlier ones.
|
|
|
|
|
|
|
|
When a subproject is encountered, this function will obtain the
|
|
|
|
statuscode of that project and use TRANS-TBL to translate the
|
|
|
|
subproject statuscode to one in ALLOWED-STATUSCODES (if not found an
|
|
|
|
error will be raised). TRANS-TBL is given as an alist of two-member
|
|
|
|
cons cells where the first member is the subproject statuscode and the
|
|
|
|
second is the index in ALLOWED-STATUSCODES to which the subproject
|
|
|
|
statuscode will be translated.
|
|
|
|
|
|
|
|
When a task is encountered, function GET-TASK-STATUS will be applied to
|
|
|
|
obtain a statuscode-equivalent of the status of the tasks."
|
|
|
|
;; define "breaker-status" as the last of the allowed-statuscodes
|
|
|
|
;; when this is encountered the loop is broken because we are done
|
|
|
|
;; (the last entry trumps all others)
|
2018-06-18 22:19:07 -04:00
|
|
|
(let ((project-status (first allowed-statuscodes))
|
2018-11-22 00:49:47 -05:00
|
|
|
(breaker-status (car (last allowed-statuscodes)))
|
|
|
|
(previous-point))
|
|
|
|
(save-excursion
|
|
|
|
(setq previous-point (point))
|
|
|
|
(outline-next-heading)
|
|
|
|
;; loop through subproject tasks until breaker-status found
|
|
|
|
(while (and (not (eq project-status breaker-status))
|
|
|
|
(> (point) previous-point))
|
|
|
|
(let ((keyword (nd/is-todoitem-p)))
|
|
|
|
(if keyword
|
|
|
|
(let ((new-status
|
|
|
|
;; if project then descend recursively
|
|
|
|
(if (nd/heading-has-children 'nd/is-todoitem-p)
|
|
|
|
(let ((n (nd/get-project-status)))
|
|
|
|
;; if project returns an allowed status
|
|
|
|
;; then use that
|
|
|
|
(or (and (member n allowed-statuscodes) n)
|
|
|
|
;; otherwise look up the value in the
|
|
|
|
;; translation table and return error
|
|
|
|
;; if not found
|
|
|
|
(nth (or (alist-get n trans-tbl)
|
|
|
|
(error (concat "status not found: " n)))
|
|
|
|
allowed-statuscodes)))
|
|
|
|
;; if tasks then use get-task-status to obtain status
|
|
|
|
(nth (funcall get-task-status keyword)
|
|
|
|
allowed-statuscodes))))
|
|
|
|
(if (nd/compare-statuscodes > new-status project-status allowed-statuscodes)
|
|
|
|
(setq project-status new-status)))))
|
|
|
|
(setq previous-point (point))
|
|
|
|
(org-forward-heading-same-level 1 t)))
|
|
|
|
project-status))
|
2018-06-18 22:19:07 -04:00
|
|
|
|
|
|
|
(defun nd/get-project-status ()
|
2018-11-22 00:23:46 -05:00
|
|
|
"Return project heading statuscode (assumes it is indeed a project)."
|
2018-06-18 22:19:07 -04:00
|
|
|
(let ((keyword (nd/is-todoitem-p)))
|
2018-11-22 00:23:46 -05:00
|
|
|
;;
|
2018-11-22 00:49:47 -05:00
|
|
|
;; these first three are easy because they only require
|
|
|
|
;; testing the project headline and nothing underneath
|
2018-11-22 00:23:46 -05:00
|
|
|
;;
|
2018-11-22 00:49:47 -05:00
|
|
|
(cond
|
2018-11-22 00:23:46 -05:00
|
|
|
;; it does not make sense for projects to be scheduled
|
2018-11-22 00:49:47 -05:00
|
|
|
((nd/is-scheduled-heading-p) :scheduled-project)
|
2018-11-22 00:23:46 -05:00
|
|
|
|
|
|
|
;; held projects do not care what is underneath them
|
2018-11-22 00:49:47 -05:00
|
|
|
((equal keyword "HOLD") :held)
|
2018-11-22 00:23:46 -05:00
|
|
|
|
|
|
|
;; projects with invalid todostates are nonsense
|
2018-11-22 00:49:47 -05:00
|
|
|
((member keyword nd/project-invalid-todostates)
|
|
|
|
:invalid-todostate)
|
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
;;
|
2018-11-22 00:49:47 -05:00
|
|
|
;; these require descending into the project subtasks
|
2018-11-22 00:23:46 -05:00
|
|
|
;;
|
|
|
|
|
|
|
|
;; canceled projects can either be archivable or complete
|
|
|
|
;; any errors or undone tasks are irrelevant
|
2018-11-22 00:49:47 -05:00
|
|
|
((equal keyword "CANC")
|
|
|
|
(nd/descend-into-project
|
|
|
|
'(:archivable :complete)
|
|
|
|
'((:stuck . 1)
|
|
|
|
(:held . 1)
|
|
|
|
(:waiting . 1)
|
|
|
|
(:active . 1)
|
|
|
|
(:scheduled-project . 1)
|
|
|
|
(:invalid-todostate . 1)
|
|
|
|
(:undone-complete . 1)
|
|
|
|
(:done-incomplete . 1))
|
|
|
|
(lambda (k)
|
|
|
|
(if (and (member k org-done-keywords)
|
|
|
|
(nd/is-archivable-heading-p)) 0 1))))
|
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
;; done projects are like canceled projects but can also be incomplete
|
2018-11-22 00:49:47 -05:00
|
|
|
((equal keyword "DONE")
|
|
|
|
(nd/descend-into-project
|
|
|
|
'(:archivable :complete :done-incomplete)
|
|
|
|
'((:stuck . 2)
|
|
|
|
(:held . 2)
|
|
|
|
(:waiting . 2)
|
|
|
|
(:active . 2)
|
|
|
|
(:scheduled-project . 2)
|
|
|
|
(:invalid-todostate . 2)
|
|
|
|
(:undone-complete . 2))
|
|
|
|
(lambda (k)
|
|
|
|
(if (member k org-done-keywords)
|
|
|
|
(if (nd/is-archivable-heading-p) 0 1)
|
|
|
|
2))))
|
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
;; project with TODO states could be basically any status
|
2018-11-22 00:49:47 -05:00
|
|
|
((equal keyword "TODO")
|
|
|
|
(nd/descend-into-project
|
|
|
|
'(:undone-complete :stuck :held :waiting :active)
|
|
|
|
'((:complete . 0)
|
|
|
|
(:archivable . 0)
|
|
|
|
(:scheduled-project . 1)
|
|
|
|
(:invalid-todostate . 1)
|
|
|
|
(:done-incomplete . 1))
|
|
|
|
(lambda (k)
|
|
|
|
(cond ((equal k "TODO") (if (nd/is-scheduled-heading-p) 4 1))
|
|
|
|
((equal k "HOLD") 2)
|
|
|
|
((equal k "WAIT") 3)
|
|
|
|
((equal k "NEXT") 4)
|
|
|
|
(t 0)))))
|
|
|
|
|
|
|
|
(t (error (concat "invalid keyword detected: " keyword))))))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-06-23 20:28:26 -04:00
|
|
|
(defun nd/get-iterator-status ()
|
2018-11-22 00:23:46 -05:00
|
|
|
"Get the status of an iterator where allowed statuscodes are in list
|
|
|
|
`nd/get-iter-statuscodes.' where latter codes in the list trump
|
|
|
|
earlier ones."
|
|
|
|
(let ((iter-status (first nd/iter-statuscodes))
|
2018-11-22 00:49:47 -05:00
|
|
|
(subtree-end (save-excursion (org-end-of-subtree t))))
|
|
|
|
(save-excursion
|
|
|
|
(setq previous-point (point))
|
|
|
|
(outline-next-heading)
|
|
|
|
(while (and (not (eq iter-status :active))
|
|
|
|
(< (point) subtree-end))
|
|
|
|
(let ((keyword (nd/is-atomic-task-p))
|
|
|
|
(new-status))
|
|
|
|
(if keyword
|
|
|
|
(progn
|
|
|
|
(setq new-status (if (nd/heading-compare-timestamp
|
|
|
|
(lambda ()
|
|
|
|
(or (nd/is-scheduled-heading-p)
|
|
|
|
(nd/is-deadlined-heading-p)))
|
|
|
|
nd/iter-future-time t)
|
|
|
|
:active
|
|
|
|
:empty))
|
|
|
|
(if (nd/compare-statuscodes > new-status iter-status nd/iter-statuscodes)
|
|
|
|
(setq iter-status new-status)))))
|
|
|
|
(outline-next-heading)))
|
|
|
|
iter-status))
|
2018-11-22 00:23:46 -05:00
|
|
|
|
2018-06-26 22:59:47 -04:00
|
|
|
(defun nd/get-periodical-status ()
|
2018-11-22 00:23:46 -05:00
|
|
|
"Get the status of a periodical where allowed statuscodes are in list
|
|
|
|
`nd/get-peri-statuscodes.' where latter codes in the list trump
|
|
|
|
earlier ones."
|
2018-06-26 22:59:47 -04:00
|
|
|
(let ((peri-status :uninit)
|
2018-11-22 00:49:47 -05:00
|
|
|
(subtree-end (save-excursion (org-end-of-subtree t))))
|
|
|
|
(save-excursion
|
|
|
|
(setq previous-point (point))
|
|
|
|
(outline-next-heading)
|
|
|
|
(while (and (not (eq peri-status :fresh))
|
|
|
|
(< (point) subtree-end))
|
|
|
|
(if (and (nd/is-periodical-heading-p)
|
|
|
|
(not (nd/heading-has-children 'nd/is-periodical-heading-p)))
|
|
|
|
(let ((new-status
|
|
|
|
(if (nd/heading-compare-timestamp
|
|
|
|
'nd/is-timestamped-heading-p
|
|
|
|
nd/iter-future-time t)
|
|
|
|
:fresh
|
|
|
|
:stale)))
|
|
|
|
(if (nd/compare-statuscodes > new-status peri-status nd/peri-statuscodes)
|
|
|
|
(setq peri-status new-status))))
|
|
|
|
(outline-next-heading)))
|
|
|
|
peri-status))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(defun nd/skip-heading ()
|
|
|
|
"Skip forward to next heading."
|
|
|
|
(save-excursion (or (outline-next-heading) (point-max))))
|
|
|
|
|
|
|
|
(defun nd/skip-subtree ()
|
|
|
|
"Skip forward to next subtree."
|
|
|
|
(save-excursion (or (org-end-of-subtree t) (point-max))))
|
|
|
|
|
|
|
|
|
2018-11-23 20:16:00 -05:00
|
|
|
(defmacro nd/skip-heading-without (heading-fun test-fun)
|
2018-11-22 00:23:46 -05:00
|
|
|
"Skip headings accoring to certain characteristics.
|
|
|
|
|
|
|
|
HEADING-FUN is a function that tests the heading and returns the
|
|
|
|
todoitem keyword on success. TEST-FUN is a function that further tests
|
|
|
|
the identity of the heading and may or may not use the keyword output
|
|
|
|
supplied by the HEADING-FUN. This function will not skip if
|
|
|
|
HEADING-FUN and TEST-FUN return true"
|
|
|
|
`(save-restriction
|
|
|
|
(widen)
|
|
|
|
(let ((keyword (,heading-fun)))
|
|
|
|
;; (message keyword)
|
|
|
|
(if (not (and keyword ,test-fun))
|
|
|
|
(nd/skip-heading)))))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(defun nd/skip-headings-with-tags (pos-tags-list &optional neg-tags-list)
|
|
|
|
"Skip headings that have tags in POS-TAGS-LIST and not in NEG-TAGS-LIST."
|
2018-06-26 22:59:47 -04:00
|
|
|
(save-restriction
|
|
|
|
(widen)
|
2018-11-22 00:23:46 -05:00
|
|
|
(let ((heading-tags (org-get-tags-at)))
|
|
|
|
(if (and (or (not pos-tags-list)
|
|
|
|
(intersection pos-tags-list heading-tags :test 'equal))
|
|
|
|
(not (intersection neg-tags-list heading-tags :test 'equal)))
|
|
|
|
(nd/skip-heading)))))
|
|
|
|
|
|
|
|
(defun nd/skip-non-stale-headings ()
|
|
|
|
"Skip headings that do not have stale timestamps and are not part of projects."
|
2018-06-26 22:59:47 -04:00
|
|
|
(save-restriction
|
|
|
|
(widen)
|
2018-11-22 00:23:46 -05:00
|
|
|
(let ((keyword (nd/is-todoitem-p)))
|
|
|
|
(if (not
|
|
|
|
(and (nd/is-stale-heading-p)
|
|
|
|
(not (member keyword org-done-keywords))
|
|
|
|
(not (nd/heading-has-children 'nd/is-todoitem-p))
|
|
|
|
(not (nd/heading-has-parent 'nd/is-todoitem-p))))
|
|
|
|
(nd/skip-heading)))))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-12-02 01:16:57 -05:00
|
|
|
(defun nd/skip-non-ia-timestamped-tasks ()
|
|
|
|
"Skip tasks that do not have an inactive timestamp."
|
|
|
|
(save-excursion
|
|
|
|
(widen)
|
|
|
|
(if (not (and (nd/is-task-p)
|
|
|
|
(not (nd/is-ia-timestamped-heading-p))))
|
|
|
|
(nd/skip-heading))))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(defun nd/skip-non-atomic-tasks ()
|
|
|
|
"Skip headings that are not atomic tasks."
|
|
|
|
(save-excursion
|
|
|
|
(widen)
|
|
|
|
(if (not (nd/is-atomic-task-p))
|
2018-06-26 22:59:47 -04:00
|
|
|
(nd/skip-heading))))
|
2018-11-22 00:23:46 -05:00
|
|
|
|
|
|
|
(defun nd/skip-non-closed-atomic-tasks ()
|
|
|
|
"Skip headings that are not complete (but not archivable) atomic tasks."
|
2018-11-23 20:16:00 -05:00
|
|
|
(nd/skip-heading-without
|
2018-11-22 00:23:46 -05:00
|
|
|
nd/is-atomic-task-p
|
|
|
|
(and (member keyword org-done-keywords)
|
|
|
|
(not (nd/is-archivable-heading-p)))))
|
|
|
|
|
|
|
|
(defun nd/skip-non-archivable-atomic-tasks ()
|
|
|
|
"Skip headings that are not archivable atomic tasks."
|
2018-11-23 20:16:00 -05:00
|
|
|
(nd/skip-heading-without
|
2018-11-22 00:23:46 -05:00
|
|
|
nd/is-atomic-task-p
|
2018-11-28 23:09:43 -05:00
|
|
|
(nd/is-archivable-heading-p)))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(defun nd/skip-non-iterator-parent-headings ()
|
|
|
|
"Skip headings that are not toplevel iterator headings."
|
2018-06-24 12:36:12 -04:00
|
|
|
(save-restriction
|
|
|
|
(widen)
|
|
|
|
(if (not (and (nd/is-iterator-heading-p)
|
|
|
|
(not (nd/heading-has-parent 'nd/is-iterator-heading-p))))
|
|
|
|
(nd/skip-heading))))
|
|
|
|
|
|
|
|
(defun nd/skip-non-iterator-unscheduled ()
|
2018-11-22 00:23:46 -05:00
|
|
|
"Skip all headings that are not unscheduled iterator children."
|
2018-11-23 20:16:00 -05:00
|
|
|
(nd/skip-heading-without
|
2018-06-24 12:36:12 -04:00
|
|
|
nd/is-atomic-task-p
|
|
|
|
(not (or (nd/is-scheduled-heading-p)
|
2018-11-22 00:49:47 -05:00
|
|
|
(nd/is-deadlined-heading-p)))))
|
2018-11-22 00:23:46 -05:00
|
|
|
|
|
|
|
(defun nd/skip-non-periodical-parent-headings ()
|
|
|
|
"Skip headings that are not toplevel periodical headings."
|
|
|
|
(save-restriction
|
|
|
|
(widen)
|
|
|
|
(if (not (and (nd/is-periodical-heading-p)
|
|
|
|
(not (nd/heading-has-parent 'nd/is-periodical-heading-p))))
|
|
|
|
(nd/skip-heading))))
|
|
|
|
|
|
|
|
(defun nd/skip-non-periodical-untimestamped ()
|
|
|
|
"Skip all headings that are not periodical children without a timestamp."
|
|
|
|
(save-restriction
|
|
|
|
(widen)
|
|
|
|
(if (not (and (nd/is-periodical-heading-p)
|
2018-11-22 00:49:47 -05:00
|
|
|
(not (nd/is-timestamped-heading-p))
|
2018-11-22 00:23:46 -05:00
|
|
|
(not (nd/heading-has-children 'nd/is-periodical-heading-p))))
|
|
|
|
(nd/skip-heading))))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-06-05 09:11:35 -04:00
|
|
|
(defun nd/skip-non-project-tasks ()
|
2018-11-22 00:23:46 -05:00
|
|
|
"Skip headings that are not project tasks."
|
2018-06-05 09:11:35 -04:00
|
|
|
(save-restriction
|
|
|
|
(widen)
|
|
|
|
(let ((keyword (nd/is-todoitem-p)))
|
|
|
|
(if keyword
|
|
|
|
(if (nd/heading-has-children 'nd/is-todoitem-p)
|
|
|
|
(if (member keyword nd/project-skip-todostates)
|
|
|
|
(nd/skip-subtree)
|
|
|
|
(nd/skip-heading))
|
2018-06-26 23:02:21 -04:00
|
|
|
(if (not (nd/heading-has-parent 'nd/is-todoitem-p))
|
2018-06-05 09:11:35 -04:00
|
|
|
(nd/skip-heading)))
|
|
|
|
(nd/skip-heading)))))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(defun nd/skip-non-discontinuous-project-tasks ()
|
|
|
|
"Skip headings that are not discontinuous within projects."
|
2018-11-23 20:16:00 -05:00
|
|
|
(nd/skip-heading-without
|
2018-11-22 00:23:46 -05:00
|
|
|
nd/is-todoitem-p
|
|
|
|
(nd/has-discontinuous-parent)))
|
|
|
|
|
|
|
|
(defun nd/skip-non-done-unclosed-todoitems ()
|
|
|
|
"Skip headings that are not completed without a closed timestamp."
|
2018-11-23 20:16:00 -05:00
|
|
|
(nd/skip-heading-without
|
2018-11-22 00:23:46 -05:00
|
|
|
nd/is-todoitem-p
|
|
|
|
(and (member keyword org-done-keywords)
|
|
|
|
(not (nd/is-closed-heading-p)))))
|
|
|
|
|
|
|
|
(defun nd/skip-non-undone-closed-todoitems ()
|
|
|
|
"Skip headings that are not incomplete with a closed timestamp."
|
2018-11-23 20:16:00 -05:00
|
|
|
(nd/skip-heading-without
|
2018-11-22 00:23:46 -05:00
|
|
|
nd/is-todoitem-p
|
|
|
|
(and (not (member keyword org-done-keywords))
|
|
|
|
(nd/is-closed-heading-p))))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-06-27 21:12:46 -04:00
|
|
|
(defun nd/skip-non-projects (&optional ignore-toplevel)
|
2018-11-22 00:23:46 -05:00
|
|
|
"Skip headings that are not projects (toplevel-only if IGNORE-TOPLEVEL is t)."
|
2018-06-18 22:19:07 -04:00
|
|
|
(save-restriction
|
|
|
|
(widen)
|
|
|
|
(let ((keyword (nd/is-project-p)))
|
|
|
|
(if keyword
|
|
|
|
(if (and nd/agenda-limit-project-toplevel
|
2018-11-22 00:49:47 -05:00
|
|
|
(not ignore-toplevel)
|
2018-06-18 22:19:07 -04:00
|
|
|
(nd/heading-has-parent 'nd/is-todoitem-p))
|
|
|
|
(nd/skip-subtree))
|
|
|
|
(nd/skip-heading)))))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-10-25 23:32:11 -04:00
|
|
|
(defun nd/org-agenda-filter-status (filter status-fun a-line
|
|
|
|
&optional filter-only)
|
2018-11-22 00:23:46 -05:00
|
|
|
"Filter for `org-agenda-before-sorting-filter-function' intended for
|
2018-06-24 17:47:07 -04:00
|
|
|
agenda project views (eg makes the assumption that all entries are
|
2018-11-22 00:23:46 -05:00
|
|
|
from projects in the original org buffer) wherein this function will
|
|
|
|
filter project headings based on their statuscodes.
|
2018-06-24 17:47:07 -04:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
It works by going to the original org buffer and determining the
|
|
|
|
project status using STATUS-FUN, after which it will check if
|
|
|
|
status is in FILTER (a list of statuscodes). If true, the flag string
|
|
|
|
in the prefix is replaced with the status, and the status is set as a
|
|
|
|
text property for further sorting.
|
2018-10-25 23:32:11 -04:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
If option FILTER-ONLY is t, function only return the unmodified a-line
|
|
|
|
or nil to act as a filter (eg does not touch text properties)."
|
2018-06-18 22:19:07 -04:00
|
|
|
(let* ((m (get-text-property 1 'org-marker a-line))
|
2018-11-22 00:49:47 -05:00
|
|
|
(s (with-current-buffer (marker-buffer m)
|
|
|
|
(goto-char m)
|
|
|
|
(funcall status-fun))))
|
|
|
|
(if (member s filter)
|
|
|
|
(if filter-only
|
2018-10-25 23:32:11 -04:00
|
|
|
a-line
|
|
|
|
(org-add-props (replace-regexp-in-string
|
2018-11-22 00:49:47 -05:00
|
|
|
"xxxx" (symbol-name s) a-line)
|
|
|
|
nil 'project-status s)))))
|
2018-06-18 22:19:07 -04:00
|
|
|
|
|
|
|
(defun nd/org-agenda-sort-prop (prop order a b)
|
2018-11-22 00:23:46 -05:00
|
|
|
"Sort a block agenda view by text property PROP given a list ORDER
|
|
|
|
of said text properties in the desired order and lines A and B as
|
|
|
|
inputs. To be used with `org-agenda-cmp-user-defined'."
|
2018-06-18 22:19:07 -04:00
|
|
|
(let* ((ta (get-text-property 1 prop a))
|
2018-11-22 00:49:47 -05:00
|
|
|
(tb (get-text-property 1 prop b))
|
|
|
|
(pa (position ta order :test (if (stringp ta) #'equal)))
|
2018-06-18 22:19:07 -04:00
|
|
|
(pb (position tb order :test (if (stringp tb) #'equal))))
|
|
|
|
(cond ((or (null pa) (null pb)) nil)
|
|
|
|
((< pa pb) +1)
|
|
|
|
((> pa pb) -1))))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(defun nd/agenda-base-heading-cmd (match header skip-fun)
|
|
|
|
"Make a tags agenda view that matches tags in string MATCH with
|
|
|
|
header given as string HEADER and with skip function SKIP-FUN."
|
2018-06-03 21:09:16 -04:00
|
|
|
`(tags
|
|
|
|
,match
|
|
|
|
((org-agenda-overriding-header ,header)
|
|
|
|
(org-agenda-skip-function ,skip-fun)
|
|
|
|
(org-agenda-sorting-strategy '(category-keep)))))
|
|
|
|
|
2018-06-05 09:11:35 -04:00
|
|
|
(defun nd/agenda-base-task-cmd (match header skip-fun &optional sort)
|
2018-11-22 00:23:46 -05:00
|
|
|
"Make a tags-todo agenda view that matches tags in string MATCH with
|
|
|
|
header given as string HEADER and with skip function SKIP-FUN. Also
|
|
|
|
takes a sorting structure SORT which is passed to
|
|
|
|
`org-agenda-sorting-strategy'"
|
2018-06-03 21:09:16 -04:00
|
|
|
(or sort (setq sort ''(category-keep)))
|
|
|
|
`(tags-todo
|
|
|
|
,match
|
|
|
|
((org-agenda-overriding-header ,header)
|
|
|
|
(org-agenda-skip-function ,skip-fun)
|
|
|
|
(org-agenda-todo-ignore-with-date t)
|
|
|
|
(org-agenda-sorting-strategy ,sort))))
|
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(defun nd/agenda-base-project-cmd (match header skip-fun kw-list status-fun
|
|
|
|
&optional todo status-px)
|
|
|
|
"Make a tags-todo agenda view that matches tags in string MATCH with
|
|
|
|
header given as string HEADER and with skip function SKIP-FUN. KW-LIST
|
|
|
|
is a list of keywords to be used in filtering and sorting (the order
|
|
|
|
in the list defines the sort order). STATUS-FUN is a function used to
|
|
|
|
get the statuscode of the current line in the agenda. Optional arg
|
|
|
|
TODO determines if this is a tags-todo (t) or tags (nil) block, and
|
|
|
|
STATUS-PX as t enables the statuscode to be formatted into the prefix
|
|
|
|
string."
|
|
|
|
`(,(if 'tags-todo 'tags)
|
2018-11-22 00:49:47 -05:00
|
|
|
,match
|
|
|
|
((org-agenda-overriding-header ,header)
|
2018-11-22 00:23:46 -05:00
|
|
|
(org-agenda-skip-function ,skip-fun)
|
2018-11-22 00:49:47 -05:00
|
|
|
(org-agenda-before-sorting-filter-function
|
|
|
|
(lambda (l) (nd/org-agenda-filter-status ,kw-list ,status-fun l)))
|
|
|
|
(org-agenda-cmp-user-defined
|
|
|
|
(lambda (a b) (nd/org-agenda-sort-prop 'project-status ,kw-list a b)))
|
|
|
|
(org-agenda-prefix-format '((tags . ,(if status-px
|
2018-11-22 00:23:46 -05:00
|
|
|
" %-12:c %(format \"xxxx: \")"
|
|
|
|
" %-12:c "))))
|
2018-11-22 00:49:47 -05:00
|
|
|
(org-agenda-sorting-strategy '(user-defined-down category-keep)))))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(defun nd/toggle-project-toplevel-display ()
|
|
|
|
"Toggle all project headings and toplevel only headings in project blocks."
|
|
|
|
(interactive)
|
|
|
|
(setq nd/agenda-limit-project-toplevel (not nd/agenda-limit-project-toplevel))
|
|
|
|
(when (equal major-mode 'org-agenda-mode)
|
|
|
|
(org-agenda-redo))
|
|
|
|
(message "Showing %s project view in agenda"
|
|
|
|
(if nd/agenda-limit-project-toplevel "toplevel" "complete")))
|
2018-11-29 17:56:31 -05:00
|
|
|
|
2018-11-28 23:09:43 -05:00
|
|
|
(defun nd/org-tags-view-advice (orig-fn &optional todo-only match)
|
|
|
|
"Advice to include done states in `org-tags-view' for tags-todo agenda types."
|
|
|
|
(nd/with-advice
|
|
|
|
((#'org-make-tags-matcher
|
|
|
|
:around (lambda (f m)
|
|
|
|
(let ((org--matcher-tags-todo-only nil))
|
|
|
|
(funcall f m)))))
|
|
|
|
(funcall orig-fn todo-only match)))
|
|
|
|
|
|
|
|
(advice-add #'org-tags-view :around #'nd/org-tags-view-advice)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(setq org-agenda-tags-todo-honor-ignore-options t)
|
|
|
|
|
|
|
|
(setq org-agenda-cmp-user-defined
|
|
|
|
'(lambda (a b)
|
|
|
|
(let ((pa (- (length (member
|
|
|
|
(get-text-property 1 'todo-state a)
|
|
|
|
nd/org-agenda-todo-sort-order))))
|
|
|
|
(pb (- (length (member
|
|
|
|
(get-text-property 1 'todo-state b)
|
|
|
|
nd/org-agenda-todo-sort-order)))))
|
|
|
|
(cond ((or (null pa) (null pb)) nil)
|
|
|
|
((> pa pb) +1)
|
|
|
|
((< pa pb) -1)))))
|
|
|
|
|
2018-06-05 09:11:35 -04:00
|
|
|
(let* ((actionable "-NA-REFILE-%inc")
|
2018-11-22 00:49:47 -05:00
|
|
|
(periodical "PARENT_TYPE=\"periodical\"")
|
|
|
|
(iterator "PARENT_TYPE=\"iterator\"")
|
|
|
|
(habit "STYLE=\"habit\"")
|
|
|
|
(task-match (concat actionable "-" periodical "-" habit "/!"))
|
2018-07-01 21:16:50 -04:00
|
|
|
(act-no-rep-match (concat actionable "-" periodical "-" iterator "-" habit "/!"))
|
|
|
|
(peri-match (concat actionable "+" periodical "-" iterator "-" habit))
|
|
|
|
(iter-match (concat actionable "-" periodical "+" iterator "-" habit "/!")))
|
2018-06-05 09:11:35 -04:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
(setq
|
|
|
|
org-agenda-custom-commands
|
|
|
|
`(("a"
|
2018-11-22 00:49:47 -05:00
|
|
|
"Calendar View"
|
|
|
|
((agenda "" ((org-agenda-skip-function '(nd/skip-headings-with-tags '("%inc" "REFILE")))
|
|
|
|
(org-agenda-include-diary t)))))
|
2018-08-20 23:06:38 -04:00
|
|
|
|
2018-11-22 00:49:47 -05:00
|
|
|
("t"
|
2018-11-22 00:23:46 -05:00
|
|
|
"Task View"
|
|
|
|
(,(nd/agenda-base-task-cmd act-no-rep-match
|
|
|
|
"Project Tasks"
|
|
|
|
''nd/skip-non-project-tasks
|
|
|
|
''(user-defined-up category-keep))
|
|
|
|
,(nd/agenda-base-task-cmd act-no-rep-match "Atomic Tasks" ''nd/skip-non-atomic-tasks)))
|
|
|
|
|
|
|
|
("p"
|
|
|
|
"Project View"
|
|
|
|
(,(nd/agenda-base-project-cmd
|
|
|
|
act-no-rep-match
|
2018-11-22 00:49:47 -05:00
|
|
|
'(concat (and nd/agenda-limit-project-toplevel "Toplevel ") "Projects")
|
2018-11-22 00:23:46 -05:00
|
|
|
''nd/skip-non-projects
|
2018-11-22 00:49:47 -05:00
|
|
|
''(:scheduled-project :invalid-todostate :undone-complete :done-incomplete
|
2018-11-22 00:23:46 -05:00
|
|
|
:stuck :waiting :held :active)
|
|
|
|
''nd/get-project-status t t)))
|
2018-11-22 00:49:47 -05:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
("i"
|
|
|
|
"Incubator View"
|
|
|
|
((agenda "" ((org-agenda-skip-function '(nd/skip-headings-with-tags nil '("%inc")))
|
2018-11-22 00:49:47 -05:00
|
|
|
(org-agenda-span 7)
|
2018-11-22 00:23:46 -05:00
|
|
|
(org-agenda-time-grid nil)
|
2018-11-23 20:37:29 -05:00
|
|
|
(org-agenda-entry-types '(:deadline :timestamp :scheduled))))
|
2018-11-22 00:23:46 -05:00
|
|
|
,(nd/agenda-base-heading-cmd "-NA-REFILE+%inc"
|
2018-11-22 00:49:47 -05:00
|
|
|
"Stale Incubated Timestamps"
|
|
|
|
''nd/skip-non-stale-headings)
|
2018-11-22 00:23:46 -05:00
|
|
|
,(nd/agenda-base-task-cmd "-NA-REFILE+%inc/!"
|
2018-11-22 00:49:47 -05:00
|
|
|
"Incubated Tasks"
|
|
|
|
''nd/skip-non-atomic-tasks)
|
2018-11-22 00:23:46 -05:00
|
|
|
,(nd/agenda-base-project-cmd
|
2018-11-22 00:49:47 -05:00
|
|
|
"-NA-REFILE+%inc/!"
|
|
|
|
'(concat (and nd/agenda-limit-project-toplevel "Toplevel ") "Incubated Projects")
|
2018-11-22 00:23:46 -05:00
|
|
|
''nd/skip-non-projects
|
2018-11-22 00:49:47 -05:00
|
|
|
''(:scheduled-project :invalid-todostate :undone-complete :done-incomplete
|
2018-11-22 00:23:46 -05:00
|
|
|
:stuck :waiting :held :active)
|
|
|
|
''nd/get-project-status
|
|
|
|
t t)))
|
2018-11-22 00:49:47 -05:00
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
("P"
|
|
|
|
"Periodical View"
|
|
|
|
(,(nd/agenda-base-project-cmd
|
2018-11-22 00:49:47 -05:00
|
|
|
(concat actionable "-" iterator "+" periodical "-" habit)
|
2018-11-22 00:23:46 -05:00
|
|
|
"Periodical Status"
|
|
|
|
''nd/skip-non-periodical-parent-headings
|
2018-11-22 00:49:47 -05:00
|
|
|
'nd/peri-statuscodes ''nd/get-periodical-status nil t)
|
2018-11-22 00:23:46 -05:00
|
|
|
,(nd/agenda-base-heading-cmd "-NA-REFILE+PARENT_TYPE=\"periodical\""
|
2018-11-22 00:49:47 -05:00
|
|
|
"Untimestamped"
|
|
|
|
''nd/skip-non-periodical-untimestamped)))
|
2018-11-22 00:23:46 -05:00
|
|
|
|
|
|
|
("I"
|
|
|
|
"Iterator View"
|
|
|
|
(,(nd/agenda-base-project-cmd
|
2018-11-22 00:49:47 -05:00
|
|
|
"-NA-REFILE+PARENT_TYPE=\"iterator\""
|
2018-11-22 00:23:46 -05:00
|
|
|
"Iterator Status"
|
|
|
|
''nd/skip-non-iterator-parent-headings
|
2018-11-22 00:49:47 -05:00
|
|
|
'nd/iter-statuscodes ''nd/get-iterator-status nil t)
|
2018-11-22 00:23:46 -05:00
|
|
|
,(nd/agenda-base-task-cmd "-NA-REFILE+PARENT_TYPE=\"iterator\"/!"
|
2018-11-22 00:49:47 -05:00
|
|
|
"Unscheduled or Undeaded"
|
|
|
|
''nd/skip-non-iterator-unscheduled)))
|
2018-11-22 00:23:46 -05:00
|
|
|
|
|
|
|
("r" "Refile" ((tags "REFILE" ((org-agenda-overriding-header "Tasks to Refile"))
|
|
|
|
(org-tags-match-list-sublevels nil))))
|
|
|
|
|
|
|
|
("f" "Flagged" ((tags "%flag" ((org-agenda-overriding-header "Flagged Tasks")))))
|
|
|
|
|
2018-11-22 00:49:47 -05:00
|
|
|
("e"
|
|
|
|
"Critical Errors"
|
2018-11-22 00:23:46 -05:00
|
|
|
(,(nd/agenda-base-task-cmd task-match
|
2018-11-22 00:49:47 -05:00
|
|
|
"Discontinous Project"
|
|
|
|
''nd/skip-non-discontinuous-project-tasks)
|
|
|
|
,(nd/agenda-base-heading-cmd task-match
|
|
|
|
"Undone Closed"
|
|
|
|
''nd/skip-non-undone-closed-todoitems)
|
2018-11-22 00:23:46 -05:00
|
|
|
,(nd/agenda-base-heading-cmd (concat actionable "-" periodical)
|
2018-11-22 00:49:47 -05:00
|
|
|
"Done Unclosed"
|
2018-12-02 01:16:57 -05:00
|
|
|
''nd/skip-non-done-unclosed-todoitems)
|
|
|
|
,(nd/agenda-base-task-cmd (concat task-match)
|
|
|
|
"Missing Creation Timestamp"
|
|
|
|
''nd/skip-non-ia-timestamped-tasks)))
|
|
|
|
|
2018-11-22 00:23:46 -05:00
|
|
|
|
|
|
|
("A"
|
|
|
|
"Archivable Tasks and Projects"
|
2018-11-28 23:09:43 -05:00
|
|
|
((tags-todo ,(concat actionable "-" periodical "-" habit "/DONE|CANC")
|
|
|
|
((org-agenda-overriding-header "Archivable Atomic Tasks and Iterators")
|
|
|
|
(org-agenda-sorting-strategy '(category-keep))
|
|
|
|
(org-agenda-skip-function 'nd/skip-non-archivable-atomic-tasks)))
|
2018-11-22 00:23:46 -05:00
|
|
|
,(nd/agenda-base-heading-cmd (concat actionable "-" habit)
|
2018-11-22 00:49:47 -05:00
|
|
|
"Stale Tasks and Periodicals"
|
|
|
|
''nd/skip-non-stale-headings)
|
2018-11-22 00:23:46 -05:00
|
|
|
,(nd/agenda-base-project-cmd
|
2018-11-22 00:49:47 -05:00
|
|
|
(concat actionable "-" periodical "-" iterator "-" habit)
|
|
|
|
'(concat (and nd/agenda-limit-project-toplevel "Toplevel ") "Archivable Projects")
|
2018-11-22 00:23:46 -05:00
|
|
|
''nd/skip-non-projects ''(:archivable) ''nd/get-project-status))))))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-10-09 23:22:42 -04:00
|
|
|
(defun nd/helm-set-printer-name ()
|
2018-10-09 23:23:18 -04:00
|
|
|
"Set the printer name using helm-completion to select printer."
|
2018-10-09 23:22:42 -04:00
|
|
|
(interactive)
|
|
|
|
(let ((pl (or helm-ff-printer-list (helm-ff-find-printers))))
|
2018-11-22 00:49:47 -05:00
|
|
|
(if pl (setq printer-name (helm-comp-read "Printer: " pl)))))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-09-12 16:50:31 -04:00
|
|
|
(use-package magit
|
|
|
|
:ensure t
|
|
|
|
:config
|
|
|
|
:delight auto-revert-mode
|
|
|
|
(setq magit-push-always-verify nil
|
2018-11-22 00:49:47 -05:00
|
|
|
git-commit-summary-max-length 50))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-09-12 16:50:31 -04:00
|
|
|
(setq dired-no-confirm '(move copy))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-09-12 16:50:31 -04:00
|
|
|
(if (file-exists-p "/usr/bin/7z")
|
2018-11-22 00:49:47 -05:00
|
|
|
(add-to-list 'dired-compress-files-alist
|
|
|
|
'("\\.7z\\'" . "7z a %o %i")))
|
2018-09-12 16:50:31 -04:00
|
|
|
|
|
|
|
(if (file-exists-p "/usr/bin/lrzip")
|
2018-11-22 00:49:47 -05:00
|
|
|
(progn
|
|
|
|
(add-to-list 'dired-compress-files-alist
|
|
|
|
'("\\.lrz\\'" . "lrzip -L 9 -o %o %i &"))
|
|
|
|
(add-to-list 'dired-compress-files-alist
|
|
|
|
'("\\.lzo\\'" . "lrzip -l -L 9 -o %o %i &"))
|
|
|
|
(add-to-list 'dired-compress-files-alist
|
|
|
|
'("\\.zpaq\\'" . "lrzip -z -L 9 -o %o %i &"))))
|
2018-09-12 16:50:31 -04:00
|
|
|
|
|
|
|
;; NOTE: this must be after the shorter lrz algos otherwise it will
|
|
|
|
;; always default to .lrz and not .tar.lrz
|
|
|
|
(if (file-exists-p "/usr/bin/lrztar")
|
2018-11-22 00:49:47 -05:00
|
|
|
(progn
|
|
|
|
(add-to-list 'dired-compress-files-alist
|
|
|
|
'("\\.tar\\.lrz\\'" . "lrztar -L 9 -o %o %i &"))
|
|
|
|
(add-to-list 'dired-compress-files-alist
|
|
|
|
'("\\.tar\\.lzo\\'" . "lrztar -l -L 9 -o %o %i &"))
|
|
|
|
(add-to-list 'dired-compress-files-alist
|
|
|
|
'("\\.tar\\.zpaq\\'" . "lrztar -z -L 9 -o %o %i &"))))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-09-12 16:50:31 -04:00
|
|
|
(setq dired-listing-switches "-Alh")
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-09-16 14:45:49 -04:00
|
|
|
;; from here:
|
|
|
|
;; https://www.djcbsoftware.nl/code/mu/mu4e/Dired.html#Dired
|
|
|
|
(require 'gnus-dired)
|
|
|
|
|
|
|
|
(eval-after-load 'gnus-dired
|
|
|
|
'(defun gnus-dired-mail-buffers ()
|
2018-11-22 00:49:47 -05:00
|
|
|
"Return a list of active mu4e message buffers."
|
|
|
|
(let (buffers)
|
2018-09-16 14:45:49 -04:00
|
|
|
(save-current-buffer
|
2018-11-22 00:49:47 -05:00
|
|
|
(dolist (buffer (buffer-list t))
|
2018-09-16 14:45:49 -04:00
|
|
|
(set-buffer buffer)
|
|
|
|
(when (and (derived-mode-p 'message-mode)
|
2018-11-22 00:49:47 -05:00
|
|
|
(null message-sent-message-via))
|
|
|
|
(push (buffer-name buffer) buffers))))
|
2018-09-16 14:45:49 -04:00
|
|
|
(nreverse buffers))))
|
|
|
|
|
|
|
|
(setq gnus-dired-mail-mode 'mu4e-user-agent)
|
|
|
|
(add-hook 'dired-mode-hook 'turn-on-gnus-dired-mode)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-10-03 00:11:05 -04:00
|
|
|
(use-package dired-du
|
|
|
|
:ensure t
|
|
|
|
:config
|
|
|
|
(setq dired-du-size-format t))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-02 00:07:18 -04:00
|
|
|
(defun nd/helm-devices ()
|
|
|
|
"Mount, unmount, and navigate to removable media using helm."
|
2018-10-31 23:23:54 -04:00
|
|
|
(interactive)
|
2018-11-02 00:07:18 -04:00
|
|
|
(let* ((mounted (mapcar
|
|
|
|
(lambda (d)
|
|
|
|
`(,(file-name-base d) . ,d))
|
|
|
|
(nd/get-mounted-directories)))
|
|
|
|
(mountable (seq-filter
|
|
|
|
(lambda (d) (not (member (car d) (mapcar #'car mounted))))
|
|
|
|
(nd/get-mountable-devices))))
|
|
|
|
(helm
|
|
|
|
:sources
|
|
|
|
(list
|
|
|
|
(helm-build-sync-source "Mounted Devices"
|
2018-11-22 00:49:47 -05:00
|
|
|
:candidates mounted
|
|
|
|
:action
|
|
|
|
'(("Open" . (lambda (s) (find-file s)))
|
2018-11-02 00:07:18 -04:00
|
|
|
("Unmount" . (lambda (s) (start-process "unmount" nil "udevil" "unmount" s)))))
|
|
|
|
(helm-build-sync-source "Mountable Devices"
|
2018-11-22 00:49:47 -05:00
|
|
|
:candidates mountable
|
|
|
|
:action
|
|
|
|
'(("Mount and Follow" . (lambda (s)
|
2018-11-02 00:07:18 -04:00
|
|
|
(nd/mount-device s)
|
|
|
|
(find-file (nd/get-mountpoint s))))
|
|
|
|
("Mount" . (lambda (s) (nd/mount-device s))))))
|
|
|
|
:buffer "*helm device buffer*"
|
|
|
|
:prompt "Device: ")))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-10 18:59:31 -04:00
|
|
|
(require 'mu4e)
|
2018-09-01 21:02:22 -04:00
|
|
|
|
2018-07-10 18:59:31 -04:00
|
|
|
(setq mail-user-agent 'mu4e-user-agent
|
2018-11-22 00:49:47 -05:00
|
|
|
mu4e-maildir "/mnt/data/Mail"
|
2018-07-15 11:23:55 -04:00
|
|
|
|
2018-11-22 00:49:47 -05:00
|
|
|
mu4e-attachment-dir "~/Downloads"
|
2018-07-17 22:49:04 -04:00
|
|
|
|
2018-11-22 00:49:47 -05:00
|
|
|
mu4e-view-show-images t
|
|
|
|
mu4e-headers-show-target nil
|
2018-12-03 21:03:32 -05:00
|
|
|
|
|
|
|
mu4e-view-show-addresses t
|
2018-11-22 00:49:47 -05:00
|
|
|
|
2018-07-17 22:49:04 -04:00
|
|
|
message-kill-buffer-on-exit t
|
|
|
|
|
2018-11-22 00:49:47 -05:00
|
|
|
mu4e-change-filenames-when-moving t
|
2018-07-15 11:23:55 -04:00
|
|
|
|
2018-11-22 00:49:47 -05:00
|
|
|
mu4e-confirm-quit nil
|
2018-09-08 20:30:45 -04:00
|
|
|
|
2018-11-22 00:49:47 -05:00
|
|
|
mu4e-view-prefer-html t
|
2018-09-14 16:56:09 -04:00
|
|
|
|
2018-11-22 00:49:47 -05:00
|
|
|
mu4e-compose-dont-reply-to-self t
|
2018-09-01 21:02:22 -04:00
|
|
|
|
2018-11-22 00:49:47 -05:00
|
|
|
mu4e-get-mail-command "systemctl --user start mbsync"
|
2018-09-15 00:18:47 -04:00
|
|
|
|
2018-11-22 00:49:47 -05:00
|
|
|
user-full-name "Dwarshuis, Nathan J")
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-09-12 09:15:03 -04:00
|
|
|
(setq mu4e-headers-fields '((:human-date . 11)
|
2018-11-22 00:49:47 -05:00
|
|
|
(:flags . 5)
|
|
|
|
(:from . 22)
|
|
|
|
(:thread-subject))
|
|
|
|
mu4e-headers-date-format "%F"
|
|
|
|
mu4e-headers-time-format "%R"
|
|
|
|
mu4e-use-fancy-chars nil)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-09-21 01:03:39 -04:00
|
|
|
;; necessary for the header macros below
|
|
|
|
(require 'nnheader)
|
|
|
|
|
|
|
|
(defun nd/message-insert-citation-header ()
|
|
|
|
"Insert the header of the reply message."
|
|
|
|
(let* ((h message-reply-headers)
|
2018-11-22 00:49:47 -05:00
|
|
|
(sep "________________________________")
|
|
|
|
(from (concat "From: " (mail-header-from h)))
|
|
|
|
(date (concat "Sent: " (mail-header-date h)))
|
|
|
|
(to (concat "To: " user-full-name))
|
|
|
|
(subj (concat "Subject: " (message-strip-subject-re (mail-header-subject h)))))
|
|
|
|
(insert (string-join `("" ,sep ,from ,date ,to ,subj "") "\n"))))
|
|
|
|
|
2018-09-21 01:03:39 -04:00
|
|
|
(setq message-citation-line-function 'nd/message-insert-citation-header)
|
2018-09-21 01:59:59 -04:00
|
|
|
|
|
|
|
(setq message-yank-prefix "")
|
|
|
|
(setq message-yank-cited-prefix "")
|
|
|
|
(setq message-yank-empty-prefix "")
|
|
|
|
|
2018-09-16 01:39:21 -04:00
|
|
|
(setq
|
|
|
|
mu4e-compose-pre-hook
|
|
|
|
(lambda ()
|
|
|
|
(let* ((msg mu4e-compose-parent-message)
|
2018-11-22 00:49:47 -05:00
|
|
|
(html (and msg (plist-get msg :body-html)))
|
|
|
|
;; oops, mu4e screwed up
|
|
|
|
(mu4e-html2text-command
|
|
|
|
(if (file-exists-p "/usr/bin/html2text")
|
|
|
|
"html2text --ignore-emphasis --images-to-alt --body-width=0"
|
|
|
|
'mu4e-shr2text)))
|
|
|
|
(when (and html mu4e-view-prefer-html (member compose-type '(reply forward)))
|
|
|
|
;; hackity hack, since the normal mu4e-message-body-text function
|
|
|
|
;; does not render the desired html, do it here and force the
|
|
|
|
;; aforementioned function to only look at text by removing
|
|
|
|
;; the html
|
|
|
|
(plist-put msg :body-txt (mu4e~html2text-shell msg mu4e-html2text-command))
|
|
|
|
(plist-put msg :body-html nil)))))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-09-15 20:33:25 -04:00
|
|
|
(require 'smtpmail)
|
2018-09-25 09:01:55 -04:00
|
|
|
;; (require 'smtpmail-async)
|
2018-09-15 20:33:25 -04:00
|
|
|
;; (require 'secrets)
|
|
|
|
;; (setq secrets-enabled t)
|
2018-09-25 09:01:55 -04:00
|
|
|
(setq send-mail-function 'smtpmail-send-it
|
2018-11-22 00:49:47 -05:00
|
|
|
message-send-mail-function 'smtpmail-send-it)
|
2018-09-15 20:33:25 -04:00
|
|
|
(add-to-list 'auth-sources (expand-file-name "~/.emacs.d/.authinfo_mu4e.gpg"))
|
|
|
|
;; (add-to-list 'auth-sources "secrets:default")
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-09-06 22:01:30 -04:00
|
|
|
(setq mu4e-context-policy 'pick-first
|
2018-11-22 00:49:47 -05:00
|
|
|
mu4e-compose-context-policy 'ask-if-none
|
|
|
|
mu4e-user-mail-address-list '("natedwarshuis@gmail.com" "ndwarshuis3@gatech.edu" "ndwarsh@emory.edu")
|
2018-09-06 22:01:30 -04:00
|
|
|
|
|
|
|
mu4e-contexts
|
2018-11-22 00:49:47 -05:00
|
|
|
`( ,(make-mu4e-context
|
|
|
|
:name "personal"
|
|
|
|
:match-func
|
|
|
|
(lambda (msg)
|
|
|
|
(when msg
|
|
|
|
(let ((pfx (mu4e-message-field msg :maildir)))
|
|
|
|
(string-prefix-p "/gmail" pfx))))
|
|
|
|
:vars '((mu4e-trash-folder . "/gmail/trash")
|
|
|
|
(mu4e-drafts-folder . "/gmail/drafts")
|
|
|
|
(mu4e-sent-folder . "/gmail/sent")
|
|
|
|
(mu4e-refile-folder . "/gmail/archive")
|
|
|
|
(mu4e-sent-messages-behavior . delete)
|
|
|
|
(smtpmail-stream-type . starttls)
|
|
|
|
(smtpmail-smtp-server . "smtp.gmail.com")
|
|
|
|
(smtpmail-smtp-service . 587)
|
|
|
|
(smtpmail-smtp-user . "natedwarshuis@gmail.com")
|
|
|
|
(user-mail-address . "natedwarshuis@gmail.com")
|
|
|
|
(mu4e-maildir-shortcuts .
|
|
|
|
(("/gmail/inbox" . ?i)
|
|
|
|
("/gmail/sent" . ?s)
|
|
|
|
("/gmail/trash" . ?t)
|
|
|
|
("/gmail/drafts" . ?d)
|
|
|
|
("/gmail/archive" . ?a)))))
|
|
|
|
,(make-mu4e-context
|
|
|
|
:name "gatech"
|
|
|
|
:match-func
|
|
|
|
(lambda (msg)
|
|
|
|
(when msg
|
|
|
|
(let ((pfx (mu4e-message-field msg :maildir)))
|
|
|
|
(string-prefix-p "/gatech" pfx))))
|
|
|
|
:vars '((mu4e-trash-folder . "/gatech/trash")
|
|
|
|
(mu4e-drafts-folder . "/gatech/drafts")
|
|
|
|
(mu4e-sent-folder . "/gatech/sent")
|
|
|
|
(mu4e-refile-folder . "/gatech/archive")
|
|
|
|
(mu4e-sent-messages-behavior . sent)
|
|
|
|
(smtpmail-stream-type . starttls)
|
|
|
|
(smtpmail-smtp-server . "smtp.office365.com")
|
|
|
|
(smtpmail-smtp-service . 587)
|
|
|
|
(smtpmail-smtp-user . "ndwarshuis3@gatech.edu")
|
|
|
|
(user-mail-address . "ndwarshuis3@gatech.edu")
|
|
|
|
(mu4e-maildir-shortcuts .
|
|
|
|
(("/gatech/inbox" . ?i)
|
|
|
|
("/gatech/sent" . ?s)
|
|
|
|
("/gatech/trash" . ?t)
|
|
|
|
("/gatech/drafts" . ?d)
|
|
|
|
("/gatech/archive" . ?a)))))
|
|
|
|
,(make-mu4e-context
|
|
|
|
:name "emory"
|
|
|
|
:match-func
|
|
|
|
(lambda (msg)
|
|
|
|
(when msg
|
|
|
|
(let ((pfx (mu4e-message-field msg :maildir)))
|
|
|
|
(string-prefix-p "/emory" pfx))))
|
|
|
|
:vars '((mu4e-trash-folder . "/emory/trash")
|
|
|
|
(mu4e-drafts-folder . "/emory/drafts")
|
|
|
|
(mu4e-sent-folder . "/emory/sent")
|
|
|
|
(mu4e-refile-folder . "/emory/archive")
|
|
|
|
(mu4e-sent-messages-behavior . sent)
|
|
|
|
(smtpmail-stream-type . starttls)
|
|
|
|
(smtpmail-smtp-server . "smtp.office365.com")
|
|
|
|
(smtpmail-smtp-service . 587)
|
|
|
|
(smtpmail-smtp-user . "ndwarsh@emory.edu")
|
|
|
|
(user-mail-address . "ndwarsh@emory.edu")
|
|
|
|
(mu4e-maildir-shortcuts .
|
|
|
|
(("/emory/inbox" . ?i)
|
|
|
|
("/emory/sent" . ?s)
|
|
|
|
("/emory/trash" . ?t)
|
2018-09-07 12:12:11 -04:00
|
|
|
("/emory/drafts" . ?d)
|
2018-11-22 00:49:47 -05:00
|
|
|
("/emory/archive" . ?a)))))))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-09-08 20:30:45 -04:00
|
|
|
(use-package org-mu4e
|
|
|
|
:after (org mu4e)
|
|
|
|
:config
|
|
|
|
(setq
|
|
|
|
;; for using mu4e in org-capture templates
|
|
|
|
org-mu4e-link-query-in-headers-mode nil
|
|
|
|
;; for composing rich-text emails using org mode
|
|
|
|
org-mu4e-convert-to-html t))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-09-16 15:17:00 -04:00
|
|
|
(setq mu4e-compose-signature-auto-include nil
|
|
|
|
|
2018-11-22 00:49:47 -05:00
|
|
|
mu4e-compose-signature
|
|
|
|
(string-join
|
|
|
|
'("Nathan Dwarshuis"
|
|
|
|
""
|
|
|
|
"PhD Student - Biomedical Engineering - Krish Roy Lab"
|
|
|
|
"Georgia Institute of Technology and Emory University"
|
|
|
|
"ndwarshuis3@gatech.edu")
|
|
|
|
"\n"))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-09-21 01:20:07 -04:00
|
|
|
(add-hook 'mu4e-compose-mode-hook 'turn-off-auto-fill)
|
|
|
|
(add-hook 'mu4e-compose-mode-hook 'visual-line-mode)
|
2018-09-26 21:29:00 -04:00
|
|
|
(add-hook 'mu4e-view-mode-hook 'turn-off-auto-fill)
|
|
|
|
(add-hook 'mu4e-view-mode-hook 'visual-line-mode)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-08 19:41:52 -05:00
|
|
|
(add-hook 'mu4e-compose-mode-hook (lambda () (flyspell-mode 1)))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-09-14 16:39:01 -04:00
|
|
|
(load "auctex.el" nil t t)
|
|
|
|
(require 'tex-mik)
|
|
|
|
|
|
|
|
(setq TeX-view-program-selection '(((output-dvi has-no-display-manager)
|
2018-11-22 00:49:47 -05:00
|
|
|
"dvi2tty")
|
|
|
|
((output-dvi style-pstricks)
|
|
|
|
"dvips and gv")
|
|
|
|
(output-dvi "xdvi")
|
|
|
|
(output-pdf "Okular")
|
|
|
|
(output-html "xdg-open")))
|
2018-09-14 16:39:01 -04:00
|
|
|
|
|
|
|
;; remove ugly section size
|
|
|
|
(setq font-latex-fontify-sectioning 'color)
|
|
|
|
|
|
|
|
(add-hook 'LaTeX-mode-hook (lambda () (outline-minor-mode 1)))
|
|
|
|
(add-hook 'Tex-latex-mode-hook (lambda () (outline-minor-mode 1)))
|
|
|
|
|
|
|
|
(use-package outline-magic
|
|
|
|
:ensure t
|
|
|
|
:after outline)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-09-13 16:44:57 -04:00
|
|
|
(use-package org-ref
|
|
|
|
:ensure t
|
|
|
|
:after org
|
|
|
|
:config
|
2018-10-02 23:29:01 -04:00
|
|
|
(setq reftex-default-bibliography (expand-file-name "~/BibTeX/master.bib")
|
2018-11-22 00:49:47 -05:00
|
|
|
org-ref-bibliography-notes (expand-file-name "~/BibTeX/notes.org")
|
|
|
|
org-ref-default-bibliography (expand-file-name "~/BibTeX/master.bib")))
|
2018-09-13 16:44:57 -04:00
|
|
|
|
2018-09-12 16:46:59 -04:00
|
|
|
(use-package helm-bibtex
|
|
|
|
:ensure t
|
|
|
|
:after helm
|
|
|
|
:config
|
2018-10-02 23:29:01 -04:00
|
|
|
(setq bibtex-completion-bibliography (expand-file-name "~/BibTeX/master.bib")
|
2018-11-22 00:49:47 -05:00
|
|
|
bibtex-completion-library-path (expand-file-name "~/BibTeX/pdf")
|
|
|
|
bibtex-completion-pdf-field "File"))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-22 00:49:47 -05:00
|
|
|
(use-package ebib
|
|
|
|
:ensure t)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-03-21 21:44:31 -04:00
|
|
|
(defadvice ansi-term (before force-bash)
|
2018-07-21 18:41:42 -04:00
|
|
|
(interactive (list "/bin/zsh")))
|
2018-03-21 21:44:31 -04:00
|
|
|
(ad-activate 'ansi-term)
|
2018-09-16 23:46:33 -04:00
|
|
|
|
|
|
|
(defun nd/term-send-raw-escape ()
|
|
|
|
"Send a raw escape character to the running terminal."
|
|
|
|
(interactive)
|
|
|
|
(term-send-raw-string "\e"))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-03-21 21:44:31 -04:00
|
|
|
(setq ediff-window-setup-function 'ediff-setup-windows-plain)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-14 20:42:20 -04:00
|
|
|
(use-package evil
|
|
|
|
:ensure t
|
|
|
|
:init
|
|
|
|
;; this is required to make evil collection work
|
|
|
|
(setq evil-want-integration nil)
|
|
|
|
:config
|
2018-07-21 17:30:35 -04:00
|
|
|
(evil-mode 1))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-09-11 08:26:05 -04:00
|
|
|
(setq sentence-end-double-space nil)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-08 19:32:54 -05:00
|
|
|
(add-to-list 'evil-motion-state-modes 'ess-help-mode)
|
|
|
|
(add-to-list 'evil-insert-state-modes 'inferior-ess-mode)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-08-18 18:06:18 -04:00
|
|
|
(use-package evil-surround
|
|
|
|
:ensure t
|
|
|
|
:after evil
|
|
|
|
:config
|
|
|
|
(global-evil-surround-mode 1))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-09-06 20:37:44 -04:00
|
|
|
(use-package evil-commentary
|
|
|
|
:ensure t
|
|
|
|
:after evil
|
|
|
|
:delight
|
|
|
|
:config
|
|
|
|
(evil-commentary-mode))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-09-06 20:37:44 -04:00
|
|
|
(use-package evil-replace-with-register
|
|
|
|
:ensure t
|
|
|
|
:after evil
|
|
|
|
:config
|
|
|
|
(evil-replace-with-register-install))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-21 17:30:35 -04:00
|
|
|
(mapc (lambda (k) (nd/move-key global-map evil-emacs-state-map (eval k)))
|
2018-11-22 00:49:47 -05:00
|
|
|
'((kbd "C-s")
|
|
|
|
(kbd "C-p")
|
|
|
|
(kbd "C-n")
|
|
|
|
(kbd "C-f")
|
|
|
|
(kbd "C-b")
|
|
|
|
(kbd "C-a")
|
|
|
|
(kbd "C-e")
|
|
|
|
(kbd "C-<SPC>")
|
|
|
|
|
|
|
|
(kbd "C-x C-;")
|
|
|
|
(kbd "C-x C-l")
|
|
|
|
(kbd "C-x C-u")
|
|
|
|
(kbd "C-x C-z")
|
|
|
|
(kbd "C-x C-c")
|
|
|
|
|
|
|
|
(kbd "M-c")
|
|
|
|
(kbd "M-d")
|
|
|
|
(kbd "M-e")
|
|
|
|
(kbd "M-r")
|
|
|
|
(kbd "M-f")
|
|
|
|
(kbd "M-h")
|
|
|
|
(kbd "M-j")
|
|
|
|
(kbd "C-M-j")
|
|
|
|
(kbd "M-k")
|
|
|
|
(kbd "M-l")
|
|
|
|
(kbd "M-m")
|
|
|
|
(kbd "M-q")
|
|
|
|
(kbd "M-w")
|
|
|
|
(kbd "M-t")
|
|
|
|
(kbd "M-u")
|
|
|
|
(kbd "M-i")
|
|
|
|
(kbd "M-z")
|
|
|
|
(kbd "M-v")
|
|
|
|
(kbd "M-/")
|
|
|
|
(kbd "M-;")
|
|
|
|
(kbd "M-DEL")))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-14 20:42:20 -04:00
|
|
|
(use-package evil-org
|
|
|
|
:ensure t
|
2018-07-14 22:16:32 -04:00
|
|
|
:after (evil org)
|
2018-07-14 20:42:20 -04:00
|
|
|
:delight
|
|
|
|
:config
|
2018-07-15 00:08:00 -04:00
|
|
|
(add-hook 'org-mode-hook 'evil-org-mode)
|
2018-07-14 22:32:34 -04:00
|
|
|
(add-hook 'evil-org-mode-hook 'evil-org-set-key-theme)
|
2018-07-14 20:42:20 -04:00
|
|
|
|
|
|
|
(require 'evil-org-agenda)
|
|
|
|
(evil-org-agenda-set-keys)
|
|
|
|
;; some of the defaults bug me...
|
|
|
|
(evil-define-key 'motion org-agenda-mode-map
|
2018-11-22 00:49:47 -05:00
|
|
|
"t" 'nd/toggle-project-toplevel-display
|
|
|
|
"D" 'org-agenda-day-view
|
|
|
|
"W" 'org-agenda-week-view
|
|
|
|
"M" 'org-agenda-month-view
|
|
|
|
"Y" 'org-agenda-year-view
|
|
|
|
"ct" nil
|
|
|
|
"sC" 'nd/org-agenda-filter-non-context
|
|
|
|
"sE" 'nd/org-agenda-filter-non-effort
|
|
|
|
"sD" 'nd/org-agenda-filter-delegate
|
|
|
|
"sP" 'nd/org-agenda-filter-non-peripheral
|
|
|
|
"e" 'org-agenda-set-effort
|
|
|
|
"ce" nil))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-20 02:47:34 -04:00
|
|
|
(use-package evil-magit
|
|
|
|
:ensure t
|
|
|
|
:after (evil magit))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-21 17:30:35 -04:00
|
|
|
(evil-define-key '(normal visual) 'visual-line-mode
|
2018-07-21 14:01:53 -04:00
|
|
|
"j" 'evil-next-visual-line
|
|
|
|
"k" 'evil-previous-visual-line
|
|
|
|
"0" 'beginning-of-visual-line
|
|
|
|
"$" 'end-of-visual-line)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-08 19:32:54 -05:00
|
|
|
(defun nd/comint-char-mode-evil-insert ()
|
2018-07-21 21:53:56 -04:00
|
|
|
"If not at the last line, go to the end of the buffer and enter insert mode. Else just enter insert mode."
|
|
|
|
(interactive)
|
|
|
|
(if (/= (line-number-at-pos (point)) (line-number-at-pos (point-max)))
|
2018-11-22 00:49:47 -05:00
|
|
|
(goto-char (point-max))))
|
2018-11-08 19:32:54 -05:00
|
|
|
|
|
|
|
(defun nd/comint-send-input-evil-insert (&optional send-input-cmd)
|
|
|
|
"Go into insert mode after calling SEND-INPUT-CMD which is usually
|
|
|
|
the function that send the command to the interactive process in the
|
|
|
|
REPL. If no SEND-INPUT-CMD then `comint-send-input' is used."
|
2018-07-21 21:53:56 -04:00
|
|
|
(interactive)
|
2018-11-08 19:32:54 -05:00
|
|
|
(if send-input-cmd (funcall send-input-cmd) (comint-send-input))
|
2018-07-21 21:53:56 -04:00
|
|
|
(evil-insert 1))
|
2018-11-08 19:32:54 -05:00
|
|
|
|
|
|
|
(evil-define-key '(normal insert) comint-mode-map
|
2018-08-01 11:39:47 -04:00
|
|
|
(kbd "C-k") 'comint-previous-input
|
|
|
|
(kbd "C-j") 'comint-next-input)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-08 19:32:54 -05:00
|
|
|
(evil-define-key 'normal inferior-ess-mode-map
|
|
|
|
(kbd "RET") (lambda () nd/comint-send-input-evil-insert
|
|
|
|
'inferior-ess-send-input))
|
2018-07-21 21:53:56 -04:00
|
|
|
|
|
|
|
(add-hook 'inferior-ess-mode-hook
|
2018-11-22 00:49:47 -05:00
|
|
|
(lambda ()
|
|
|
|
(add-hook 'evil-insert-state-entry-hook
|
|
|
|
'nd/comint-char-mode-evil-insert nil t)))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-11-08 19:32:54 -05:00
|
|
|
(evil-define-key 'normal intero-repl-mode-map
|
|
|
|
(kbd "RET") 'nd/comint-send-input-evil-insert)
|
|
|
|
|
|
|
|
(add-hook 'intero-repl-mode-hook
|
2018-11-22 00:49:47 -05:00
|
|
|
(lambda ()
|
|
|
|
(add-hook 'evil-insert-state-entry-hook
|
|
|
|
'nd/comint-char-mode-evil-insert nil t)))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-14 20:42:20 -04:00
|
|
|
(use-package evil-collection
|
|
|
|
:ensure t
|
|
|
|
:after evil
|
|
|
|
:init
|
2018-09-14 16:39:01 -04:00
|
|
|
(setq evil-collection-mode-list
|
2018-11-22 00:49:47 -05:00
|
|
|
'(company dired ediff flycheck helm minibuffer mu4e term which-key))
|
2018-07-20 00:50:51 -04:00
|
|
|
(setq evil-collection-setup-minibuffer t)
|
2018-07-14 22:05:02 -04:00
|
|
|
:config
|
|
|
|
(evil-collection-init))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-09-16 23:45:43 -04:00
|
|
|
(defun nd/dired-move-to-parent-directory ()
|
|
|
|
"Move buffer to parent directory (like 'cd ..')."
|
|
|
|
(interactive)
|
|
|
|
(find-alternate-file ".."))
|
|
|
|
|
|
|
|
(defun nd/dired-xdg-open ()
|
|
|
|
"Open all non-text files in external app using xdg-open.
|
|
|
|
Only regular files are considered."
|
|
|
|
(interactive)
|
|
|
|
(let* ((file-list (seq-filter #'file-regular-p (dired-get-marked-files)))
|
2018-11-22 00:49:47 -05:00
|
|
|
(do-it (if (<= (length file-list) 5)
|
|
|
|
t
|
|
|
|
(y-or-n-p "Open more then 5 files? "))))
|
|
|
|
(when do-it
|
|
|
|
(mapc
|
|
|
|
(lambda (f) (let ((process-connection-type nil))
|
|
|
|
(start-process "" nil "xdg-open" f)))
|
|
|
|
file-list))))
|
2018-09-16 23:45:43 -04:00
|
|
|
|
|
|
|
(defun nd/dired-open-with ()
|
|
|
|
"Open marked non-text files in external app via open-with dialog
|
|
|
|
according to mime types as listed in all available desktop files."
|
|
|
|
(interactive)
|
|
|
|
(let* ((mf (seq-filter #'file-regular-p (dired-get-marked-files)))
|
2018-11-22 00:49:47 -05:00
|
|
|
(qmf (mapcar #'shell-quote-argument mf))
|
|
|
|
(file-mime-list (mapcar (lambda (f) (list f (nd/get-mime-type f))) qmf)))
|
|
|
|
|
|
|
|
(if (= (length file-mime-list) 0)
|
|
|
|
(message "No files selected")
|
|
|
|
|
|
|
|
(let* ((first-pair (car file-mime-list))
|
|
|
|
(last-pairs (cdr file-mime-list))
|
|
|
|
mime-alist file-list)
|
|
|
|
(setq file-list (nth 0 first-pair)
|
|
|
|
mime-alist (nd/get-apps-from-mime (nth 1 first-pair)))
|
|
|
|
;; if multiple files selected, add to the selection list
|
|
|
|
(if last-pairs
|
|
|
|
(progn
|
|
|
|
(setq file-list (string-join (mapcar #'car file-mime-list) " "))
|
|
|
|
(dolist (mime (mapcar (lambda (f) (nth 1 f)) last-pairs))
|
|
|
|
(setq mime-alist (intersection mime-alist
|
|
|
|
(nd/get-apps-from-mime mime)
|
|
|
|
:test #'equal)))))
|
|
|
|
(if (= (length mime-alist) 0)
|
|
|
|
(let* ((ml (delete-dups (mapcan #'cdr file-mime-list)))
|
|
|
|
(mls (string-join ml ", ")))
|
|
|
|
(if (= (length ml) 1)
|
|
|
|
(message (concat "No apps found for mime type: " mls))
|
|
|
|
(message (concat "No common apps found for mime types: " mls))))
|
|
|
|
(helm
|
|
|
|
:sources (helm-build-sync-source "Apps"
|
|
|
|
:candidates mime-alist
|
|
|
|
:action '(("Open" . (lambda (f) (nd/execute-desktop-command f file-list)))))
|
|
|
|
:buffer "*helm open with*"))))))
|
2018-09-16 23:45:43 -04:00
|
|
|
|
|
|
|
(defun nd/dired-sort-by ()
|
|
|
|
"Sort current dired buffer by a list of choices presented in helm menu.
|
|
|
|
Note this assumes there are no sorting switches on `dired-ls'"
|
|
|
|
(interactive)
|
|
|
|
(let ((sort-alist '(("Name" . "")
|
2018-11-22 00:49:47 -05:00
|
|
|
("Date" . "-t")
|
|
|
|
("Size" . "-S")
|
|
|
|
("Extension" . "-X")
|
|
|
|
("Dirs First" . "--group-directories-first"))))
|
|
|
|
(helm
|
|
|
|
:sources
|
|
|
|
(helm-build-sync-source "Switches"
|
|
|
|
:candidates sort-alist
|
|
|
|
:action
|
|
|
|
'(("Sort" . (lambda (s) (dired-sort-other (concat dired-listing-switches " " s))))))
|
|
|
|
:buffer "*helm sort buffer*")))
|
2018-09-16 23:45:43 -04:00
|
|
|
|
2018-07-20 00:54:53 -04:00
|
|
|
(put 'dired-find-alternate-file 'disabled nil)
|
|
|
|
|
2018-07-20 00:33:40 -04:00
|
|
|
(evil-define-key 'normal dired-mode-map
|
|
|
|
"a" 'dired-find-file
|
2018-12-03 20:56:26 -05:00
|
|
|
"za" 'gnus-dired-attach
|
2018-09-01 15:49:24 -04:00
|
|
|
"gs" 'nd/dired-sort-by
|
2018-09-16 23:37:47 -04:00
|
|
|
"^" 'nd/dired-move-to-parent-directory
|
|
|
|
"q" 'nd/kill-current-buffer
|
2018-07-20 00:33:40 -04:00
|
|
|
(kbd "<return>") 'dired-find-alternate-file
|
2018-08-21 22:45:02 -04:00
|
|
|
(kbd "C-<return>") 'nd/dired-xdg-open
|
2018-09-16 23:37:47 -04:00
|
|
|
(kbd "M-<return>") 'nd/dired-open-with)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-21 17:30:35 -04:00
|
|
|
(evil-define-key '(normal insert) helm-map
|
|
|
|
(kbd "<tab>") 'helm-execute-persistent-action
|
|
|
|
(kbd "C-<tab>") 'helm-select-action)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-21 18:41:42 -04:00
|
|
|
(evil-define-key 'insert term-raw-map
|
2018-09-16 23:46:33 -04:00
|
|
|
(kbd "<escape>") 'nd/term-send-raw-escape
|
2018-07-21 18:41:42 -04:00
|
|
|
(kbd "C-<escape>") 'evil-normal-state)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-14 20:42:20 -04:00
|
|
|
(add-hook 'org-mode-hook
|
|
|
|
(lambda ()
|
2018-11-29 17:56:31 -05:00
|
|
|
;; override default TODO timestamp creation to insert the creation date
|
2018-11-27 23:56:48 -05:00
|
|
|
(local-set-key (kbd "M-S-<return>") 'nd/org-insert-todo-heading-inactive-timestamp)
|
2018-11-29 17:56:31 -05:00
|
|
|
|
2018-12-03 20:52:20 -05:00
|
|
|
;; use the hyper keys/vim arrows with the shifters instead of shift/arrows
|
2018-12-02 01:17:54 -05:00
|
|
|
(local-set-key (kbd "H-k") 'org-shiftup)
|
|
|
|
(local-set-key (kbd "H-l") 'org-shiftright)
|
|
|
|
(local-set-key (kbd "H-j") 'org-shiftdown)
|
|
|
|
(local-set-key (kbd "H-h") 'org-shiftleft)
|
2018-11-29 17:56:31 -05:00
|
|
|
|
|
|
|
;; this is just a useful function I made (actually I think I stole)
|
2018-07-14 20:42:20 -04:00
|
|
|
(local-set-key (kbd "C-c C-x x") 'nd/mark-subtree-done)
|
2018-11-29 17:56:31 -05:00
|
|
|
|
|
|
|
;; override default org subtree cloning with something that clones and resets
|
2018-07-14 20:42:20 -04:00
|
|
|
(local-set-key (kbd "C-c C-x c") 'nd/org-clone-subtree-with-time-shift)))
|
|
|
|
|
|
|
|
(add-hook 'org-agenda-mode-hook
|
|
|
|
(lambda ()
|
2018-11-24 20:34:23 -05:00
|
|
|
(local-set-key (kbd "C-c C-c") 'org-agenda-set-tags)
|
2018-12-04 23:28:33 -05:00
|
|
|
(local-set-key (kbd "C-c C-x c") 'nd/org-agenda-clone-subtree-with-time-shift)
|
2018-11-24 20:34:23 -05:00
|
|
|
(local-set-key (kbd "C-c C-x C-b") 'nd/org-agenda-toggle-checkbox)))
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-12-03 20:52:41 -05:00
|
|
|
(define-key mu4e-headers-mode-map (kbd "C-c C-l") 'org-store-link)
|
|
|
|
(define-key mu4e-view-mode-map (kbd "C-c C-l") 'org-store-link)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-08-06 12:27:26 -04:00
|
|
|
(define-key dired-mode-map (kbd "C-x g") 'magit)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-09-13 16:44:57 -04:00
|
|
|
(define-key helm-command-prefix (kbd "b") 'helm-bibtex)
|
2018-09-21 01:04:04 -04:00
|
|
|
(define-key helm-command-prefix (kbd "S") 'helm-swoop)
|
2018-09-13 16:44:57 -04:00
|
|
|
(define-key helm-command-prefix (kbd "<f8>") 'helm-resume)
|
2018-10-11 17:08:13 -04:00
|
|
|
|
|
|
|
(define-key helm-command-prefix (kbd "f") 'helm-flyspell-correct)
|
|
|
|
(define-key helm-command-prefix (kbd "F") 'helm-multi-files)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-09-14 16:39:01 -04:00
|
|
|
(define-key outline-minor-mode-map (kbd "<tab>") 'outline-cycle)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-07-14 20:42:20 -04:00
|
|
|
(global-set-key (kbd "<f1>") 'org-agenda)
|
|
|
|
(global-set-key (kbd "<f2>") 'org-capture)
|
2018-07-21 02:44:10 -04:00
|
|
|
(global-set-key (kbd "<f3>") 'cfw:open-org-calendar)
|
2018-08-21 22:45:02 -04:00
|
|
|
(global-set-key (kbd "<f4>") 'org-clock-goto)
|
|
|
|
(global-set-key (kbd "<f5>") 'ansi-term)
|
2018-09-13 16:44:57 -04:00
|
|
|
(global-set-key (kbd "<f8>") 'helm-command-prefix)
|
2018-08-22 00:20:31 -04:00
|
|
|
(global-set-key (kbd "C-<f5>") 'nd/open-urxvt)
|
2018-07-18 10:35:37 -04:00
|
|
|
(global-set-key (kbd "<f12>") 'mu4e)
|
|
|
|
(global-set-key (kbd "C-<f12>") 'global-hl-line-mode)
|
2018-07-14 20:42:20 -04:00
|
|
|
(global-set-key (kbd "S-<f12>") 'display-line-numbers-mode)
|
2018-12-11 19:33:59 -05:00
|
|
|
|
2018-10-10 19:24:03 -04:00
|
|
|
(global-set-key (kbd "C-<SPC>") 'company-complete)
|
|
|
|
|
2018-07-14 20:42:20 -04:00
|
|
|
(global-set-key (kbd "C-c e") 'nd/config-visit)
|
2018-07-14 23:36:42 -04:00
|
|
|
(global-set-key (kbd "C-c r") 'nd/config-reload)
|
|
|
|
(global-set-key (kbd "C-c s") 'sudo-edit)
|
|
|
|
|
2018-07-14 20:42:20 -04:00
|
|
|
(global-set-key (kbd "C-x 2") 'nd/split-and-follow-horizontally)
|
|
|
|
(global-set-key (kbd "C-x 3") 'nd/split-and-follow-vertically)
|
2018-07-18 12:06:51 -04:00
|
|
|
(global-unset-key (kbd "C-x c"))
|
2018-07-18 10:35:37 -04:00
|
|
|
(global-set-key (kbd "C-x k") 'nd/kill-current-buffer)
|
2018-07-24 17:18:17 -04:00
|
|
|
(global-set-key (kbd "C-x C-d") 'helm-bookmarks)
|
2018-11-02 00:07:18 -04:00
|
|
|
(global-set-key (kbd "C-x C-c C-d") 'nd/helm-devices)
|
2018-07-14 23:36:42 -04:00
|
|
|
(global-set-key (kbd "C-x C-f") 'helm-find-files)
|
|
|
|
(global-set-key (kbd "C-x C-b") 'helm-buffers-list)
|
|
|
|
|
2018-09-16 13:22:36 -04:00
|
|
|
(global-set-key (kbd "C-M-S-k") 'nd/close-all-buffers)
|
|
|
|
(global-set-key (kbd "C-M-S-o") 'nd/org-close-all-buffers)
|
|
|
|
(global-set-key (kbd "C-M-S-a") 'org-agenda-kill-all-agenda-buffers)
|
2018-07-18 10:35:37 -04:00
|
|
|
|
2018-07-14 23:36:42 -04:00
|
|
|
(global-set-key (kbd "M-b") 'nd/switch-to-previous-buffer)
|
|
|
|
(global-set-key (kbd "M-o") 'ace-window)
|
|
|
|
(global-set-key (kbd "M-s") 'avy-goto-char)
|
|
|
|
(global-set-key (kbd "M-x") 'helm-M-x)
|