summaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorGravatar Uko Kokņevičs2025-03-09 22:27:20 +0200
committerGravatar Uko Kokņevičs2025-03-09 23:06:14 +0200
commit5f4ff3c478f207fc1cf6087e9878133677840243 (patch)
treed1b76849cc7917ee9dcb2f9c8b5c8d40181ea358 /init.el
parentinit.el: Move custom file loading further down (diff)
downloademacs.d-5f4ff3c478f207fc1cf6087e9878133677840243.tar.gz
emacs.d-5f4ff3c478f207fc1cf6087e9878133677840243.tar.xz
emacs.d-5f4ff3c478f207fc1cf6087e9878133677840243.zip
init.el: Move use-package initialisation higher up
Diffstat (limited to 'init.el')
-rw-r--r--init.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/init.el b/init.el
index c47c17e..d4f3269 100644
--- a/init.el
+++ b/init.el
@@ -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+