diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-04-15 16:29:49 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-04-15 16:29:49 -0400 |
commit | cc293723aba75eeb0fec911e2e045f465c87d9ff (patch) | |
tree | f2420946aab2b910150309a130b32f9a7dca3897 | |
parent | Merge `rfc/5/package-manager-straight` branch to `stable` branch (diff) | |
download | mmosmacs-cc293723aba75eeb0fec911e2e045f465c87d9ff.tar.gz mmosmacs-cc293723aba75eeb0fec911e2e045f465c87d9ff.tar.bz2 mmosmacs-cc293723aba75eeb0fec911e2e045f465c87d9ff.zip |
Use `use-package`, install/load with `straight-use-package`
-rw-r--r-- | init.el | 15 |
1 files changed, 13 insertions, 2 deletions
@@ -5,9 +5,10 @@ | |||
5 | 5 | ||
6 | 6 | ||
7 | ;; --------------------------------------------------------------------- | 7 | ;; --------------------------------------------------------------------- |
8 | ;;; Package Management | 8 | ;;; Package & Configuration Management |
9 | ;; ----------------------------------- | 9 | ;; ----------------------------------- |
10 | ;; MMOSMacs uses `straight.el' for package management. | 10 | ;; MMOSMacs uses `straight.el' for package management and `use-package' |
11 | ;; for configuration management to make things more consistent. | ||
11 | ;; --------------------------------------------------------------------- | 12 | ;; --------------------------------------------------------------------- |
12 | 13 | ||
13 | ;; --------------------------------- | 14 | ;; --------------------------------- |
@@ -33,6 +34,16 @@ | |||
33 | 34 | ||
34 | 35 | ||
35 | ;; --------------------------------- | 36 | ;; --------------------------------- |
37 | ;; `use-package' | ||
38 | ;; ------------- | ||
39 | ;; This makes sure `use-package' is | ||
40 | ;; installed and loaded. | ||
41 | ;; --------------------------------- | ||
42 | |||
43 | (straight-use-package 'use-package) | ||
44 | |||
45 | |||
46 | ;; --------------------------------- | ||
36 | ;; Don't load outdated code | 47 | ;; Don't load outdated code |
37 | ;; ------------------------ | 48 | ;; ------------------------ |
38 | ;; MMOSMacs is under highly active | 49 | ;; MMOSMacs is under highly active |