X-Git-Url: https://git.shemshak.org/~bandali/configs/blobdiff_plain/18f7141a08ed3b25d98854f6b0b9d9ac09396bf4..c7edd059af577713696c235c46ee2b3f7514ee1b:/init.org?ds=inline diff --git a/init.org b/init.org index b000bcf..defa13d 100644 --- a/init.org +++ b/init.org @@ -973,6 +973,7 @@ Not just how I do git, but /the/ way to do git. (setq magit-repository-directories '(("~/.emacs.d/" . 0) ("~/src/git/" . 1))) + (push (cons [unpushed status] 'show) magit-section-initial-visibility-alist) :custom-face (magit-diff-file-heading ((t (:weight normal))))) #+end_src @@ -2136,7 +2137,17 @@ For when I /have to/ use GH. #+begin_src emacs-lisp (use-package message :config - (setq message-kill-buffer-on-exit t + (defconst message-cite-style-bandali + '((message-cite-function 'message-cite-original) + (message-citation-line-function 'message-insert-formatted-citation-line) + (message-cite-reply-position 'traditional) + (message-yank-prefix "> ") + (message-yank-cited-prefix ">") + (message-yank-empty-prefix ">") + (message-citation-line-format "Hi %F,\n\nOn %Y-%m-%d %l:%M %p, %N wrote:")) + "Citation style based on Mozilla Thunderbird's. Use with message-cite-style.") + (setq message-cite-style 'message-cite-style-bandali + message-kill-buffer-on-exit t message-send-mail-function 'message-send-mail-with-sendmail message-sendmail-envelope-from 'header message-dont-reply-to-names @@ -2180,7 +2191,7 @@ Convenient footnotes in =message-mode=. footnote-style 'unicode)) #+end_src -** supercite +** COMMENT supercite #+begin_src emacs-lisp (use-package supercite