system changes

This commit is contained in:
jjanzen 2025-01-08 08:54:44 -06:00
parent 3e5e132533
commit ed045012a5

View file

@ -28,29 +28,23 @@ Suppress native compilation warnings and errors. Native compilation seems to be
Bootstrap package management. I use =straight= with =use-package= to allow declarative package management and include =git= repositories in addition to =elpa= / =melpa=.
#+begin_src emacs-lisp
;; (defvar bootstrap-version)
;; (let ((bootstrap-file
;; (expand-file-name
;; "straight/repos/straight.el/bootstrap.el"
;; (or (bound-and-true-p straight-base-dir)
;; user-emacs-directory)))
;; (bootstrap-version 7))
;; (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))
;; (straight-use-package 'use-package)
;; (setq straight-use-package-by-default t
(unless (package-installed-p 'use-package)
(package-refresh-contents)
(package-install 'use-package))
(eval-and-compile
(setq use-package-always-ensure t
use-package-expand-minimally t))
(defvar bootstrap-version)
(let ((bootstrap-file
(expand-file-name
"straight/repos/straight.el/bootstrap.el"
(or (bound-and-true-p straight-base-dir)
user-emacs-directory)))
(bootstrap-version 7))
(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))
(straight-use-package 'use-package)
(setq straight-use-package-by-default t)
#+end_src
* Appearance