increase gc during startup, add org article latex option fontsize, deactivate global-emojify-mode

This commit is contained in:
2024-02-18 16:21:27 +01:00
parent 3894350a6a
commit 5e9bb3b882
6 changed files with 1159 additions and 95 deletions

View File

@@ -1,7 +1,7 @@
;;; post-settings.el --- Summary -*- lexical-binding: t -*-
;;; Commentary:
;;; Code:
(setq gc-cons-threshold (* 2 1000 1000)) ;; Make gc pauses faster by decreasing back the threshold. See also above.
(setq gc-cons-threshold (* 2 1024 1024)) ;; Make gc pauses faster by decreasing back the threshold. See also above.
(provide 'post-settings)
;;; post-settings.el ends here

View File

@@ -54,7 +54,7 @@
(use-package emojify
:if window-system
:commands emojify-mode
:hook (after-init . global-emojify-mode)
;; :hook (after-init . global-emojify-mode)
:init
(setq emojify-emojis-dir (concat user-emacs-directory ".cache/emojify")))