From e0c7db7541d5f7a00cbfe0b2beb4282989f66a44 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Tue, 10 Feb 2026 12:49:06 -0600 Subject: implement GitLab CI --- publish.el | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'publish.el') diff --git a/publish.el b/publish.el index 325ce26..3399715 100644 --- a/publish.el +++ b/publish.el @@ -1,8 +1,13 @@ ;;; -*- lexical-binding: t -*- ;; Explicitly load packages for Doom Emacs -(add-to-list 'load-path "~/.config/emacs/.local/straight/repos/htmlize") -(add-to-list 'load-path "~/.config/emacs/.local/straight/repos/weblorg") -(add-to-list 'load-path "~/.config/emacs/.local/straight/repos/templatel") +(defvar site-lisp-base + (if (eq system-type 'darwin) + "~/.config/emacs/.local/straight/repos" ; macOS path + "/home/linuxbrew/.config/emacs/.local/straight/repos")) ; CI/Linux path + +(add-to-list 'load-path (expand-file-name "htmlize" site-lisp-base)) +(add-to-list 'load-path (expand-file-name "weblorg" site-lisp-base)) +(add-to-list 'load-path (expand-file-name "templatel" site-lisp-base)) (require 'htmlize) (require 'weblorg) -- cgit v1.2.3