summaryrefslogtreecommitdiffhomepage
path: root/custom/jao-custom-brew.el
blob: 6f57e65de262959453e1f0d06231c1d71d77ee6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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