From ce756d681c4f5ea9f905364e7b0310b1dc6fb1f0 Mon Sep 17 00:00:00 2001 From: Howard Abrams Date: Thu, 23 Mar 2023 22:18:03 -0700 Subject: [PATCH] Changes for working on Linux --- bootstrap.org | 2 +- ha-config.org | 1 + initialize | 5 ++--- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bootstrap.org b/bootstrap.org index 0b407e5..f4314ab 100644 --- a/bootstrap.org +++ b/bootstrap.org @@ -93,7 +93,7 @@ Since =brew link gpg= doesn’t always work, this helper function may find the e (defun executable (path) "Return PATH if executable, see `file-executable-p'." (let ((epath (first (file-expand-wildcards path)))) - (when (file-executable-p epath) epath))) + (when (and epath (file-executable-p epath)) epath))) (use-package epa-file :straight (:type built-in) diff --git a/ha-config.org b/ha-config.org index 9e7c3fb..1c50fd1 100644 --- a/ha-config.org +++ b/ha-config.org @@ -2220,6 +2220,7 @@ Dirvish does require the following supporting programs, but I’ve already got t I’m beginning with dirvish to use the [[https://github.com/alexluigit/dirvish/blob/main/docs/CUSTOMIZING.org][sample configuration]] and change it: #+begin_src emacs-lisp (use-package dirvish + :straight (:host github :repo "alexluigit/dirvish") :init (dirvish-override-dired-mode) diff --git a/initialize b/initialize index 40f95b0..b17b506 100755 --- a/initialize +++ b/initialize @@ -73,14 +73,13 @@ cat > $HAMACS_DEST/init.el <