From 134dbcbb085dccc4eb9534edf4acc4710b91d78f Mon Sep 17 00:00:00 2001 From: Howard Abrams Date: Thu, 25 May 2023 10:26:34 -0700 Subject: [PATCH] Download and use the latest org version The org version on my current v29 build of Emacs seems to be broken, so I'm now downloading the latest org version. --- ha-org-word-processor.org | 6 ++++-- ha-org.org | 3 ++- initialize | 12 +++++++++--- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/ha-org-word-processor.org b/ha-org-word-processor.org index b549a00..945163c 100644 --- a/ha-org-word-processor.org +++ b/ha-org-word-processor.org @@ -48,7 +48,8 @@ Oh, and as I indent lists, they should change the /bulleting/ in a particular se The =org-indent-indentation-per-level=, which defaults to =2= doesn’t really work well with variable-width fonts, so let’s make the spaces at the beginning of the line fixed: #+begin_src emacs-lisp (use-package org - :straight (:type built-in) + ;; TODO: Using the latest org-mode + ;; :straight (:type built-in) :custom-face (org-indent ((t (:inherit fixed-pitch))))) #+end_src ** Typographic Quotes @@ -268,7 +269,8 @@ And decrease the prominence of the property drawers: This process allows us to use =variable-pitch= mode for all org documents. #+begin_src emacs-lisp (use-package org - :straight (:type built-in) + ;; TODO: Using the latest org-mode + ;; :straight (:type built-in) :hook (org-mode . variable-pitch-mode)) #+end_src * Org Modern diff --git a/ha-org.org b/ha-org.org index 20b361d..9e84997 100644 --- a/ha-org.org +++ b/ha-org.org @@ -28,7 +28,8 @@ A literate programming file for configuring org-mode and those files. Org is a /large/ complex beast with a gazillion settings, so I discuss these later in this document. #+begin_src emacs-lisp (use-package org - :straight (:type built-in) + ;; TODO: Using the latest org-mode + ;; :straight (:type built-in) :mode ("\\.org" . org-mode) ; Addresses an odd warning :init <> diff --git a/initialize b/initialize index b17b506..467d4ec 100755 --- a/initialize +++ b/initialize @@ -6,12 +6,14 @@ HAMACS_DIR=$(cd "$(dirname "$0")"; pwd) HAMACS_DEST=$HOME/.emacs.d +cd $HAMACS_DIR mkdir -p $HAMACS_DEST for LINK in snippets templates elisp do + echo Symlinking $HAMACS_DEST/$LINK to $HAMACS_DIR/$LINK ... rm -rf $HAMACS_DEST/$LINK - ln -s --force $HAMACS_DIR/$LINK $HAMACS_DEST + ln -s $HAMACS_DIR/$LINK $HAMACS_DEST done cat > $HAMACS_DEST/early-init.el < $HAMACS_DEST/init.el <