diff options
| author | Gene Pasquet <dev@etenil.net> | 2025-11-12 00:14:42 +0000 |
|---|---|---|
| committer | Gene Pasquet <dev@etenil.net> | 2025-11-12 00:30:31 +0000 |
| commit | 17da5213d61734b7994f186d0bb9566d7112ddcd (patch) | |
| tree | db3acc07989fa8568da567a585191f5152d7bfcd | |
| parent | d8c082c902fbd4265d33a3532e4c17ad47a09d7f (diff) | |
| -rw-r--r-- | early-substrate.el | 4 | ||||
| -rw-r--r-- | installer/early-init.el | 5 | ||||
| -rw-r--r-- | installer/init.el | 3 | ||||
| -rwxr-xr-x | installer/installer.sh | 2 |
4 files changed, 9 insertions, 5 deletions
diff --git a/early-substrate.el b/early-substrate.el index ff4937a..40c1bed 100644 --- a/early-substrate.el +++ b/early-substrate.el @@ -1,3 +1,4 @@ +;;; -*- lexical-binding: t; -*- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; ;;; Basic settings for quick startup and convenience @@ -19,6 +20,7 @@ (setq default-frame-alist '((vertical-scroll-bars . nil) (horizontal-scroll-bars . nil) (ns-appearance . dark) - (ns-transparent-titlebar . t))) + (ns-transparent-titlebar . t) + (background-color . "#000000"))) (provide 'early-substrate) ;; End of early-substrate.el diff --git a/installer/early-init.el b/installer/early-init.el index c3c275b..9fd494b 100644 --- a/installer/early-init.el +++ b/installer/early-init.el @@ -1,4 +1,5 @@ -;; ~/.emacs.d/early-init.el -(add-to-list 'load-path "/home/gene/test-emacs/emacs-substrate") +;; -*- lexical-binding: t; -*- +;; early-init.el +(add-to-list 'load-path "INSTALL_PATH") (require 'early-substrate) diff --git a/installer/init.el b/installer/init.el index 6ef8912..c5e0bd3 100644 --- a/installer/init.el +++ b/installer/init.el @@ -1,4 +1,5 @@ -;; ~/.emacs.d/init.el +;; -*- lexical-binding: t; -*- +;; init.el (require 'substrate) ;; Set custom variables here diff --git a/installer/installer.sh b/installer/installer.sh index fafe6df..b2308f3 100755 --- a/installer/installer.sh +++ b/installer/installer.sh @@ -13,7 +13,7 @@ fi # Clone emacs-substrate pushd $EMACS_DIR -git clone https://github.com/Etenil/emacs-substrate.git +git clone https://git.etenil.net/emacs-substrate # Download and prep early-init.el sed "s%INSTALL_PATH%$EMACS_DIR/emacs-substrate%g" < emacs-substrate/installer/early-init.el > "$EMACS_DIR/early-init.el" |
