From: rearman Date: Thu, 13 Jun 2024 21:07:01 +0000 (-0400) Subject: Bikeshedding X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=5389871e22c4c8f1c37f663add3106501f77767c;p=emacsinit.git Bikeshedding --- diff --git a/config.org b/config.org index d83cfa5..8ce6a3c 100644 --- a/config.org +++ b/config.org @@ -95,8 +95,9 @@ Better Performance? Taken from [[https://rossabaker.com/configs/emacs/#garbage- (emacs-startup . gcmh-mode) :custom (gcmh-idle-delay 'auto) + (gcmh-verbose t) (gcmh-auto-idle-delay-factor 10) - (gcmh-high-cons-threshold (* 16 1024 1024))) + (gcmh-high-cons-threshold (* 4 1024 1024))) #+END_SRC *** Ledger-mode @@ -197,19 +198,20 @@ I need to open binary files with their own editor. Disgusting. #+BEGIN_SRC emacs-lisp (use-package openwith :ensure t - :custom - (openwith-associations (list - (list (openwith-make-extension-regexp - '("xls" "xlsx" "doc" "docx" - "ppt" "odt" "ods" "odg" "odp")) - "LibreOffice" - '(file)) - (list (openwith-make-extension-regexp - '("adpro")) - "ProductivitySuite" - '(file)))) :config (openwith-mode t)) + +(setq openwith-associations (list + (list (openwith-make-extension-regexp + '("xls" "xlsx" "doc" "docx" + "ppt" "odt" "ods" "odg" "odp")) + "LibreOffice" + '(file)) + (list (openwith-make-extension-regexp + '("adpro")) + "ProductivitySuite" + '(file)))) + #+END_SRC *** acme-mouse @@ -236,6 +238,7 @@ Lisp me...sometimes. (setq inferior-lisp-program "sbcl") (use-package slime :ensure t + :defer t :custom (slime-net-coding-system 'utf-8-unix)) (when (file-exists-p "~/lisp/sbcl.core-for-slime")