This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
dianciemacs/lisp/performance.el

13 lines
388 B
EmacsLisp
Raw Normal View History

;;; lisp/performance.el --- Performance improvements for Emacs -*- lexical-binding: t; -*-
;;; Commentary:
;;
;; Emacs is widely known to be one of the slower editors - despite the
;; great 'native compilation' or the daemon-client relationship. So that needs to change too.
;;
;;; Code:
2022-11-08 17:53:07 +00:00
2022-11-20 08:03:40 +00:00
;; Increase the threshold
(setq gc-cons-threshold (* 50 1000 1000))
;;; performance.el ends here