# HG changeset patch # User Oleksandr Gavenko # Date 1625670069 -10800 # Node ID 1f9eaaf10690538af50c8169d96a45c6a391b93c # Parent bd09520467ad4b26c8335b3df481b566185bece8 Increased GC threshold. Fixed unbalanced parentheses. diff -r bd09520467ad -r 1f9eaaf10690 .emacs-my --- a/.emacs-my Wed Jun 23 13:24:46 2021 +0300 +++ b/.emacs-my Wed Jul 07 18:01:09 2021 +0300 @@ -4,6 +4,9 @@ ;; ;; For load order see README. +;; Try to speed things up, especially in VM. +(setq gc-cons-threshold 6000000) + (require 'cl-lib) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -584,7 +587,7 @@ (list (getenv "PATH") (expand-file-name "~/usr/bin") (expand-file-name "~/.local/bin") "/usr/local/bin" "/usr/bin" "/bin" - "/usr/sbin" "/sbin"))) + "/usr/sbin" "/sbin")))) (defun follow-cygwin-symlink () "Follow new-style (and also UCS-16) Cygwin symlinks." @@ -765,9 +768,6 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (message "standart/general settings") -;; Try to speed things up, especially in VM. -(setq gc-cons-threshold 2000000) - ;; Default 'command-history' length too short (in Emacs 23.2 is 30). (setq history-length 200) (setq history-delete-duplicates t)