From 308ab86c18112ae122540afe3790c371b623cc83 Mon Sep 17 00:00:00 2001 From: Kjetil Orbekk Date: Tue, 30 Jan 2024 09:35:15 -0500 Subject: move emacs config --- emacs/.config/emacs-v2/early-init.el | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 emacs/.config/emacs-v2/early-init.el (limited to 'emacs/.config/emacs-v2/early-init.el') diff --git a/emacs/.config/emacs-v2/early-init.el b/emacs/.config/emacs-v2/early-init.el deleted file mode 100644 index 8184bbb..0000000 --- a/emacs/.config/emacs-v2/early-init.el +++ /dev/null @@ -1,32 +0,0 @@ -;;; -*- lexical-binding: t; -*- - -(setq package-enable-at-startup nil) - -;; Optimization: file name handlers not needed during startup. -(defvar kj/file-name-handler-alist--old file-name-handler-alist) -(setq file-name-handler-alist nil) -(defun kj/restore-file-name-handler-alist () - (if (not (boundp 'kj/file-name-handler-alist--old)) - (message "File name handler already restored") - (setq file-name-handler-alist kj/file-name-handler-alist--old) - (makunbound 'kj/file-name-handler-alist--old))) - -;; Optimization: avoid garbage collection during startup. -;; Reset by gcmh later. -(setq gc-cons-threshold most-positive-fixnum) - -;; Move native compilation cache out of the way. Should be set in -;; early-init so that package loding uses the updated value. -(startup-redirect-eln-cache "~/.cache/emacs/eln-cache") - -;; Early options that affect startup. -(setq - package-native-compile t - inhibit-startup-message t - native-comp-async-report-warnings-errors 'silent - default-frame-alist - '((tool-bar-lines . 0) - (menu-bar-lines . 0) - (undecorated . t) - (vertical-scroll-bars . nil) - (horizontal-scroll-bars . nil))) -- cgit v1.2.3