diff options
Diffstat (limited to '.emacs.d/plugins.el')
-rw-r--r-- | .emacs.d/plugins.el | 14 |
1 files changed, 14 insertions, 0 deletions
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)) |