Add new todo states to #emacs and orgmode
This commit is contained in:
@ -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")
|
||||
|
||||
Reference in New Issue
Block a user