windows specific speedups
This commit is contained in:
parent
014025d8a7
commit
aede4d4cc0
18
code/init.el
18
code/init.el
|
@ -1,6 +1,22 @@
|
|||
;; -*- lexical-binding: t; -*-
|
||||
;; TURN ON IN INIT FILE!!!!!
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
; windows performance tweaks
|
||||
(when (eq system-type 'windows-nt)
|
||||
; https://lists.gnu.org/archive/html/bug-gnu-emacs/2012-10/msg00274.html
|
||||
; https://gioorgi.com/2013/solving-emacs-freeze-andor-slowdown-on-windows7/
|
||||
(setq w32-get-true-file-attributes nil)
|
||||
|
||||
; https://www.reddit.com/r/emacs/comments/c9ef5i/comment/esx5ndr/
|
||||
(setq inhibit-compacting-font-caches t)
|
||||
|
||||
; https://www.reddit.com/r/emacs/comments/c9ef5i/comment/esx5snw/
|
||||
(when (boundp 'w32-pipe-read-delay)
|
||||
(setq w32-pipe-read-delay 0))
|
||||
)
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
; misc performance tweaks
|
||||
;; Make gc pauses faster by decreasing the threshold.
|
||||
(setq gc-cons-threshold (* 2 1000 1000))
|
||||
|
||||
|
|
18
org/init.el
18
org/init.el
|
@ -1,6 +1,22 @@
|
|||
;; -*- lexical-binding: t; -*-
|
||||
;; TURN ON IN INIT FILE!!!!!
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
; windows performance tweaks
|
||||
(when (eq system-type 'windows-nt)
|
||||
; https://lists.gnu.org/archive/html/bug-gnu-emacs/2012-10/msg00274.html
|
||||
; https://gioorgi.com/2013/solving-emacs-freeze-andor-slowdown-on-windows7/
|
||||
(setq w32-get-true-file-attributes nil)
|
||||
|
||||
; https://www.reddit.com/r/emacs/comments/c9ef5i/comment/esx5ndr/
|
||||
(setq inhibit-compacting-font-caches t)
|
||||
|
||||
; https://www.reddit.com/r/emacs/comments/c9ef5i/comment/esx5snw/
|
||||
(when (boundp 'w32-pipe-read-delay)
|
||||
(setq w32-pipe-read-delay 0))
|
||||
)
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
; misc performance tweaks
|
||||
;; Make gc pauses faster by decreasing the threshold.
|
||||
(setq gc-cons-threshold (* 2 1000 1000))
|
||||
|
||||
|
|
Reference in a new issue