aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--early-substrate.el4
-rw-r--r--installer/early-init.el5
-rw-r--r--installer/init.el3
-rwxr-xr-xinstaller/installer.sh2
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"