(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
#+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
(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")