From 59bba2661da5ebce3f25136269413b9962992462 Mon Sep 17 00:00:00 2001 From: Marius Peter Date: Tue, 14 Dec 2021 10:58:48 +0100 Subject: Backup before installing GNU Guix... --- smart-documents.org | 40 +++++++++++++++++++++++++--------------- 1 file changed, 25 insertions(+), 15 deletions(-) (limited to 'smart-documents.org') diff --git a/smart-documents.org b/smart-documents.org index 627555a..14879a6 100644 --- a/smart-documents.org +++ b/smart-documents.org @@ -40,6 +40,8 @@ personal GNU Emacs customizations with a tutorial. This paper is a ** TODO Project vision/values/core objectives +** TODO button as master {{{sd}}} entry point + * Introduction @@ -282,7 +284,6 @@ with ~M-x customize-group ~. (load custom-file) #+END_SRC - ** Backups Backups are very important! @@ -359,7 +360,7 @@ navigation cues on all modern desktop OSes. From IBM's CUA, we get the (cua-mode) #+END_SRC -** Files +** Files :FLAGGED: *** Save a file @@ -381,7 +382,7 @@ navigation cues on all modern desktop OSes. From IBM's CUA, we get the *** Open this very file -(Function defined in Section [[Jumping to this file]]) +(Function defined in Section [[This very file]]) #+BEGIN_SRC emacs-lisp :tangle yes (global-set-key (kbd "C-c c") 'sd-find-literate-config) @@ -889,7 +890,8 @@ Yeah, a Telegram client exists for Emacs. # Implement automatically downloading this kind of executable! #+BEGIN_SRC emacs-lisp :tangle yes - (require 'plantuml-mode) + ;; (require 'plantuml-mode) + (use-package plantuml-mode) (setq plantuml-default-exec-mode 'jar plantuml-jar-path (concat sd-path-resources @@ -974,8 +976,9 @@ Org mode shines particularly when exporting to PDF---Org files can reliably be shared and exported to PDF in a reproducible fashion. #+BEGIN_SRC emacs-lisp :tangle yes - (use-package pdf-tools) - (pdf-tools-install) +(use-package pdf-tools) +(unless (string-equal system-type "windows-nt") +(pdf-tools-install)) #+END_SRC *** Accounting @@ -1224,12 +1227,22 @@ custom format: *** Sequence of TODOs - #+begin_src emacs-lisp :tangle yes (setq org-todo-keywords - '((sequence "TODO" "|" "DONE") - (sequence "APPLY" "FOLLOW UP" "|" "REJECTED" "STOP" "OFFER") - (sequence "STUCK" "WAITING" "|" "N/A" "COMPLETED"))) + '((sequence "TODO" ; Vanilla sequence + "|" + "DONE") + (sequence "APPLY" ; Job applications + "FOLLOW UP" + "|" + "REJECTED" + "STOP" + "OFFER") + (sequence "STUCK" ; Project mgmt + "WAITING" + "|" + "N/A" + "COMPLETED"))) #+end_src @@ -1453,9 +1466,6 @@ green in Org's LaTeX exports. Very stylish, much flair! :defer t :ensure auctex :ensure auctex-latexmk) - ;; :config - ;; (setq TeX-auto-save t)) - (auctex-latexmk-setup) #+END_SRC @@ -1942,7 +1952,7 @@ Without a carefully designed theme, our editor would become unusable. Thus, we /describe/ two themes that were developed *purposefully* and iteratively. -#+BEGIN_SRC emacs-lisp :tangle no +#+BEGIN_SRC emacs-lisp :tangle yes (load-theme 'sd-compagnon-dark) #+END_SRC @@ -1950,7 +1960,7 @@ unusable. Thus, we /describe/ two themes that were developed (load-theme 'molokai) #+END_SRC -#+BEGIN_SRC emacs-lisp :tangle yes +#+BEGIN_SRC emacs-lisp :tangle no (load-theme 'sd-light) #+END_SRC -- cgit v1.2.3