Add new todo states to #emacs and orgmode

This commit is contained in:
Colin Powell
2019-10-18 10:04:21 -04:00
parent e02fa03dfe
commit 578b1c83a6
3 changed files with 19 additions and 3 deletions

View File

@ -166,6 +166,18 @@
message-sendmail-extra-arguments '("--read-envelope-from")
mail-envelope-from 'header)
;;; It is the opposite of fill-paragraph
(defun unfill-paragraph ()
"Takes a multi-line paragraph and makes it into a single line of text."
(interactive)
(let ((fill-column (point-max)))
(fill-paragraph nil)))
;; Handy key definition
(define-key global-map "\M-z" 'unfill-paragraph)
(achievements-mode)
(nyan-mode)
(add-to-list 'auto-mode-alist '("\\.plantuml\\'" . planetuml-mode))
(load! "+ui.el")