X-Git-Url: https://git.shemshak.org/gitweb.cgi/~bandali/configs/blobdiff_plain/81ad062de322f5bb378f8a2e7b36ef7cd50ffeb9..0e340dbb6d2137be8106666d56b7bbf82f223ece:/init.org diff --git a/init.org b/init.org index 741ad7a..221335c 100644 --- a/init.org +++ b/init.org @@ -243,7 +243,9 @@ can then be managed with the help of Magit or other tools. ("C-c B A" . borg-activate) ("C-c B a" . borg-assimilate) ("C-c B b" . borg-build) - ("C-c B c" . borg-clone))) + ("C-c B c" . borg-clone) + ("C-c B m" . borg-insert-update-message) + ("C-c B r" . borg-remove))) #+end_src *** =use-package= @@ -283,7 +285,6 @@ database, low-level functions for querying the database, and a :bind (("C-c B d" . epkg-describe-package) ("C-c B p" . epkg-list-packages) - ("C-c B r" . borg-remove) ("C-c B u" . epkg-update))) #+end_src @@ -355,7 +356,7 @@ in my shell. (mapc #'disable-theme custom-enabled-themes)) #+end_src -** COMMENT Server +** Server Start server if not already running. Alternatively, can be done by issuing =emacs --daemon= in the terminal, which can be automated with @@ -610,7 +611,7 @@ Enable automatic reloading of changed buffers and files. #+begin_src emacs-lisp (global-auto-revert-mode 1) (setq auto-revert-verbose nil - global-auto-revert-non-file-buffers t) + global-auto-revert-non-file-buffers nil) #+end_src *** Always use space for indentation @@ -1922,7 +1923,8 @@ For when I /have to/ use GH. :config (setq gnus-posting-styles '((".*" - (address "amin@aminb.org")) + (address "amin@aminb.org") + (body "\nBest,\namin\n")) ("gnu.*" (address "bandali@gnu.org")) ("nnimap\\+uwaterloo:.*" @@ -2015,7 +2017,8 @@ Convenient footnotes in =message-mode=. (setq sc-nested-citation-p t ;; sc-cite-blank-lines-p t sc-citation-leader "" - sc-auto-fill-region-p t + sc-reference-tag-string "" + sc-auto-fill-region-p nil sc-confirm-always-p nil) :config (defun amin--sc-header () @@ -2023,7 +2026,7 @@ Convenient footnotes in =message-mode=. (let ((sc-mumble "") (whofrom (sc-whofrom))) (if whofrom - (insert (sc-hdr "Hi " (sc-mail-field "sc-firstname") ", \n\n") + (insert (sc-hdr "Hi " (sc-mail-field "sc-firstname") ",\n\n") sc-reference-tag-string whofrom " writes:\n"))))