]> git.earman.xyz Git - emacsinit.git/commitdiff
Bikeshedding
authorrearman <rearman@r717.net>
Thu, 13 Jun 2024 21:07:01 +0000 (17:07 -0400)
committerrearman <rearman@r717.net>
Thu, 13 Jun 2024 21:07:01 +0000 (17:07 -0400)
config.org

index d83cfa5f6cecf058eb6be292fff591501deebfa9..8ce6a3cfd3bc6f501aac97ea00dc91fc292c85b5 100644 (file)
@@ -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")