commit 088b514daa8c33d7854cffbd926690dc538d7b8a
parent 7e16536ac5b67368a1d445afe41795059310fd7c
Author: Ethan Long <me@ethandl.dev>
Date: Mon, 29 Jun 2026 21:10:08 +1000
Disable symlinks on Windows
Windows is so feculant that this is required, technically you can
do symlinks on NT but it's a mess.
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/init.el b/init.el
@@ -40,6 +40,10 @@
(elpaca `(,@elpaca-order))
;; End elpaca bootstrap
+;; For windows hosts, we need to enable `elpaca-no-symlink-mode'
+(when (eq system-type 'windows-nt)
+ (elpaca-no-symlink-mode))
+
;; Installing the latest Org package so that we have live LaTeX previews:
(elpaca '(org :repo "https://code.tecosaur.net/tec/org-mode" :branch "dev"))