From 3bc8ad73ac5b50b069d43e9be7150247fff0b225 Mon Sep 17 00:00:00 2001 From: tastytea Date: Wed, 26 Feb 2020 23:31:33 +0100 Subject: [PATCH] Emacs: slow-computer is in basics/global-variables. --- init.el | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/init.el b/init.el index 3129bed..473463a 100644 --- a/init.el +++ b/init.el @@ -1,6 +1,6 @@ ;;; init.el --- tastytea's Emacs init file. -*- lexical-binding: t; -*- -;; Time-stamp: <2020-02-26T23:30:13+0100> +;; Time-stamp: <2020-02-26T23:31:10+0100> ;;; Commentary: ;; Requires at least Emacs 26. Most of it will probably work with Emacs 24 and @@ -11,14 +11,15 @@ ;; Add path to init files. (push (concat user-emacs-directory "init.d") load-path) +(require 'basics/package-management) +(require 'basics/global-variables) + ;; Set garbage collection threshold to 100 MiB (or 20 MiB) to speed up init. ;; It is reset at the end of the file. (if slow-computer (setq gc-cons-threshold (* 20 1024 1024)) (setq gc-cons-threshold (* 100 1024 1024))) -(require 'basics/package-management) -(require 'basics/global-variables) (require 'basics/misc) (require 'basics/input) (require 'basics/buffers)