8 lines
271 B
EmacsLisp
8 lines
271 B
EmacsLisp
;;; post-settings.el --- Summary -*- lexical-binding: t -*-
|
|
;;; Commentary:
|
|
;;; Code:
|
|
(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
|