From f111725d0543c491e694b40de1825d8535c1e1f4 Mon Sep 17 00:00:00 2001 From: jao Date: Mon, 22 Sep 2025 02:18:53 +0100 Subject: brew environment in separate custom file --- custom/jao-custom-brew.el | 21 +++++++++++++++++++++ init.el | 12 +----------- 2 files changed, 22 insertions(+), 11 deletions(-) create mode 100644 custom/jao-custom-brew.el diff --git a/custom/jao-custom-brew.el b/custom/jao-custom-brew.el new file mode 100644 index 0000000..6f57e65 --- /dev/null +++ b/custom/jao-custom-brew.el @@ -0,0 +1,21 @@ +;;; jao-custom-brew.el --- Setup for homebrew -*- lexical-binding: t; -*- + +(setenv "HOMEBREW_PREFIX" "/opt/homebrew") +(setenv "HOMEBREW_CELLAR" "/opt/hombrew/Cellar") +(setenv "HOMEBREW_REPOSITORY" "/opt/homebrew") + +(setenv "GUILE_LOAD_PATH" "/opt/homebrew/share/guile/site/3.0") +(setenv "GUILE_LOAD_COMPILED_PATH" "/opt/homebrew/lib/guile/3.0/site-ccache") +(setenv "GUILE_SYSTEM_EXTENSIONS_PATH" "/opt/homebrew/lib/guile/3.0/extensions") + +(dolist (p '("/Applications/Emacs.app/Contents/MacOS/bin-arm64-11" + "/Applications/Emacs.app/Contents/MacOS/libexec-arm64-11" + "/opt/homebrew/sbin" + "/opt/homebrew/bin" + "~/.local/bin")) + (jao-exec-path p)) + +(add-to-list 'Info-directory-list "/opt/homebrew/share/info") + +(provide 'jao-custom-brew) +;;; jao-custom-brew.el ends here diff --git a/init.el b/init.el index 0d99145..2153689 100644 --- a/init.el +++ b/init.el @@ -103,17 +103,7 @@ (require 'info) (add-to-list 'Info-directory-list jao-info-dir) -(jao-when-darwin - (setenv "HOMEBREW_PREFIX" "/opt/homebrew") - (setenv "HOMEBREW_CELLAR" "/opt/hombrew/Cellar") - (setenv "HOMEBREW_REPOSITORY" "/opt/homebrew") - (dolist (p '("/Applications/Emacs.app/Contents/MacOS/bin-arm64-11" - "/Applications/Emacs.app/Contents/MacOS/libexec-arm64-11" - "/opt/homebrew/sbin" - "/opt/homebrew/bin" - "~/.local/bin")) - (jao-exec-path p)) - (add-to-list 'Info-directory-list "/opt/homebrew/share/info")) +(jao-when-darwin (require 'jao-custom-brew)) (jao-exec-path (expand-file-name "bin" jao-emacs-dir)) -- cgit v1.2.3