From 3b3343b7b3cb93274fbb5605d982f41b1d26ade3 Mon Sep 17 00:00:00 2001 From: Steph Enders Date: Thu, 30 Mar 2023 20:34:16 -0400 Subject: Reorganize emacs.d - use straight.el Major restructuring of the emacs directory: - moved .emacs to .emacs.d/init.el - setup early-init.el (as per straight.el directions) - moved major things into plugins.el - moved package installs into packages.el --- .emacs.d/plugins.el | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .emacs.d/plugins.el (limited to '.emacs.d/plugins.el') diff --git a/.emacs.d/plugins.el b/.emacs.d/plugins.el new file mode 100644 index 0000000..d4c8983 --- /dev/null +++ b/.emacs.d/plugins.el @@ -0,0 +1,14 @@ +;; here is where you can paste all the non self-customized files + +(defvar bootstrap-version) +(let ((bootstrap-file + (expand-file-name "straight/repos/straight.el/bootstrap.el" user-emacs-directory)) + (bootstrap-version 6)) + (unless (file-exists-p bootstrap-file) + (with-current-buffer + (url-retrieve-synchronously + "https://raw.githubusercontent.com/radian-software/straight.el/develop/install.el" + 'silent 'inhibit-cookies) + (goto-char (point-max)) + (eval-print-last-sexp))) + (load bootstrap-file nil 'nomessage)) -- cgit v1.2.3-54-g00ecf