diff options
| author | 2025-03-09 22:27:20 +0200 | |
|---|---|---|
| committer | 2025-03-09 23:06:14 +0200 | |
| commit | 5f4ff3c478f207fc1cf6087e9878133677840243 (patch) | |
| tree | d1b76849cc7917ee9dcb2f9c8b5c8d40181ea358 | |
| parent | init.el: Move custom file loading further down (diff) | |
| download | emacs.d-5f4ff3c478f207fc1cf6087e9878133677840243.tar.gz emacs.d-5f4ff3c478f207fc1cf6087e9878133677840243.tar.xz emacs.d-5f4ff3c478f207fc1cf6087e9878133677840243.zip | |
init.el: Move use-package initialisation higher up
| -rw-r--r-- | init.el | 8 |
1 files changed, 4 insertions, 4 deletions
| @@ -25,6 +25,10 @@ | |||
| 25 | (defconst tmp-dir (expand-file-name "tmp" local-dir)) | 25 | (defconst tmp-dir (expand-file-name "tmp" local-dir)) |
| 26 | (defconst shared-dir (expand-file-name "shared" base-dir)) | 26 | (defconst shared-dir (expand-file-name "shared" base-dir)) |
| 27 | 27 | ||
| 28 | ;; TODO: Check how to do add smth like `:advice (fn :around advice)` sometime | ||
| 29 | (require 'use-package) | ||
| 30 | (use-package use-package) | ||
| 31 | |||
| 28 | ;; Early configurations | 32 | ;; Early configurations |
| 29 | (setq shared-game-score-directory (expand-file-name "shared-game-score" shared-dir)) | 33 | (setq shared-game-score-directory (expand-file-name "shared-game-score" shared-dir)) |
| 30 | 34 | ||
| @@ -168,10 +172,6 @@ | |||
| 168 | (straight-thaw-versions) | 172 | (straight-thaw-versions) |
| 169 | (straight-freeze-versions)) | 173 | (straight-freeze-versions)) |
| 170 | 174 | ||
| 171 | ;; use-package | ||
| 172 | ;; TODO: Check how to do add smth like `:advice (fn :around advice)` sometime | ||
| 173 | (use-package use-package) | ||
| 174 | |||
| 175 | ;; compat | 175 | ;; compat |
| 176 | (use-package compat-30 | 176 | (use-package compat-30 |
| 177 | :if +emacs29+ | 177 | :if +emacs29+ |