diff options
author | Gene Pasquet <dev@etenil.net> | 2025-02-12 07:01:38 +0000 |
---|---|---|
committer | Gene Pasquet <dev@etenil.net> | 2025-02-12 07:01:38 +0000 |
commit | a7406fb2a375bdc358361349c30850f8e523b46f (patch) | |
tree | b1f637988379b31efa2f7a417fd552318c1b3dae | |
parent | 3510b0bcf7815b216dfc8ccb0569f36cbd4ec947 (diff) |
Start adding a installer
-rw-r--r-- | installer/early-init.el | 4 | ||||
-rw-r--r-- | installer/init.el | 8 | ||||
-rw-r--r-- | installer/installer.sh | 3 |
3 files changed, 15 insertions, 0 deletions
diff --git a/installer/early-init.el b/installer/early-init.el new file mode 100644 index 0000000..151709f --- /dev/null +++ b/installer/early-init.el @@ -0,0 +1,4 @@ +;; ~/.emacs.d/early-init.el +(add-to-list 'load-path "INSTALL_PATH") + +(require 'early-substrate) diff --git a/installer/init.el b/installer/init.el new file mode 100644 index 0000000..6ef8912 --- /dev/null +++ b/installer/init.el @@ -0,0 +1,8 @@ +;; ~/.emacs.d/init.el +(require 'substrate) + +;; Set custom variables here + +(substrate-init) + +;; The rest of your config below diff --git a/installer/installer.sh b/installer/installer.sh new file mode 100644 index 0000000..6b0bd56 --- /dev/null +++ b/installer/installer.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +# TODO |