update installed packages

This commit is contained in:
Kyle Isom 2025-05-06 13:45:49 -07:00
parent caaf112f0b
commit 4869093491
1 changed files with 12 additions and 2 deletions

14
init.el
View File

@ -30,6 +30,12 @@ present on disk."
;; set up package handling ;; set up package handling
(require 'package) (require 'package)
(setq package-user-dir (cache-path "packages")) (setq package-user-dir (cache-path "packages"))
(package-initialize)
(when (equal (system-name) "GEIMACFHPL9CRFG9")
(customize-set-variables 'url-proxy-services
'(("no_proxy" . "^\\(localhost\\|127\\..*\\)")
("http" . "127.0.0.1:9000")
("https" . "127.0.0.1:9000"))))
(setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3") (setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3")
(add-to-list 'package-archives (add-to-list 'package-archives
@ -38,7 +44,6 @@ present on disk."
;;; you're a computer, you don't get to disrupt my work ;;; you're a computer, you don't get to disrupt my work
(setq native-comp-async-report-warnings-errors 'silent) (setq native-comp-async-report-warnings-errors 'silent)
(package-initialize)
(let* ((home-dir (getenv "HOME")) (let* ((home-dir (getenv "HOME"))
(ensure-lisp (emacs-path "ensure.el"))) (ensure-lisp (emacs-path "ensure.el")))
(load ensure-lisp)) (load ensure-lisp))
@ -265,7 +270,12 @@ present on disk."
'(global-font-lock-mode t) '(global-font-lock-mode t)
'(org-html-mathjax-template '(org-html-mathjax-template
"<script>\12 window.MathJax = {\12 loader: {load: ['[tex]/physics']},\12 tex: {\12 ams: {\12 multlineWidth: '%MULTLINEWIDTH'\12 },\12 packages: {'[+]': ['physics']},\12 tags: '%TAGS',\12 tagSide: '%TAGSIDE',\12 tagIndent: '%TAGINDENT'\12 },\12 chtml: {\12 scale: %SCALE,\12 displayAlign: '%ALIGN',\12 displayIndent: '%INDENT'\12 },\12 svg: {\12 scale: %SCALE,\12 styles: {\12 color: \"#002266\",\12 },\12 displayAlign: '%ALIGN',\12 displayIndent: '%INDENT'\12 },\12 output: {\12 font: '%FONT',\12 displayOverflow: '%OVERFLOW'\12 }\12 };\12</script>\12\12<script\12 id=\"MathJax-script\"\12 async\12 src=\"/static/mathjax.js\">\12</script>") "<script>\12 window.MathJax = {\12 loader: {load: ['[tex]/physics']},\12 tex: {\12 ams: {\12 multlineWidth: '%MULTLINEWIDTH'\12 },\12 packages: {'[+]': ['physics']},\12 tags: '%TAGS',\12 tagSide: '%TAGSIDE',\12 tagIndent: '%TAGINDENT'\12 },\12 chtml: {\12 scale: %SCALE,\12 displayAlign: '%ALIGN',\12 displayIndent: '%INDENT'\12 },\12 svg: {\12 scale: %SCALE,\12 styles: {\12 color: \"#002266\",\12 },\12 displayAlign: '%ALIGN',\12 displayIndent: '%INDENT'\12 },\12 output: {\12 font: '%FONT',\12 displayOverflow: '%OVERFLOW'\12 }\12 };\12</script>\12\12<script\12 id=\"MathJax-script\"\12 async\12 src=\"/static/mathjax.js\">\12</script>")
'(package-selected-packages nil)) '(package-selected-packages
'(ag auto-complete c-eldoc ebib ellama elpy exec-path-from-shell geiser
go-mode gruvbox-theme keychain-environment lua-mode luarocks magit
markdown-mode mwim nix-mode nix-modeline nix-ts-mode nixos-options
org-journal org-ref org-roam paredit pelican-mode projectile
racket-mode scpaste simple-httpd slime undo-tree xcscope)))
(custom-set-faces (custom-set-faces
;; custom-set-faces was added by Custom. ;; custom-set-faces was added by Custom.