about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2022-10-14 12:25:49 +0100
committerDavid Morgan <djm_uk@protonmail.com>2022-10-14 12:25:49 +0100
commit7f2a489654fb612c3ce4ed58a5f7e497b0aed40e (patch)
treef3cc3db0ced04826ad670a336de395fcba00d894
parent9bb8b4d6c480ca3f59e15e004c07acad80b5b565 (diff)
downloaddotfiles-7f2a489654fb612c3ce4ed58a5f7e497b0aed40e.tar.gz
Remove/move some setqs
-rw-r--r--.emacs.d/early-init.el3
-rw-r--r--.emacs.d/lisp/init-editor.el5
2 files changed, 3 insertions, 5 deletions
diff --git a/.emacs.d/early-init.el b/.emacs.d/early-init.el
index ef5640c..8127d0d 100644
--- a/.emacs.d/early-init.el
+++ b/.emacs.d/early-init.el
@@ -5,8 +5,6 @@
 (setq gc-cons-threshold most-positive-fixnum
       gc-cons-percentage 0.6)
 
-(setq load-prefer-newer nil)
-
 (push '(menu-bar-lines . 0) default-frame-alist)
 (push '(tool-bar-lines . 0) default-frame-alist)
 (push '(vertical-scroll-bars) default-frame-alist)
@@ -34,7 +32,6 @@
 (setq-default cursor-in-non-selected-windows nil)
 (setq highlight-nonselected-windows nil)
 (setq fast-but-imprecise-scrolling t)
-(setq ffap-machine-p-known 'reject)
 (setq idle-update-delay 1.0)
 (setq inhibit-compacting-font-caches t)
 (setq redisplay-skip-fontification-on-input t)
diff --git a/.emacs.d/lisp/init-editor.el b/.emacs.d/lisp/init-editor.el
index 9849cc7..0a7d5ee 100644
--- a/.emacs.d/lisp/init-editor.el
+++ b/.emacs.d/lisp/init-editor.el
@@ -40,8 +40,9 @@
   (setq save-interprogram-paste-before-kill t
         apropos-do-all t
         mouse-yank-at-point t
-        require-final-newline t
-        load-prefer-newer t)
+        require-final-newline t)
+
+  (setq ffap-machine-p-known 'reject)
 
   ;; https://github.com/natecox/dotfiles/blob/master/workspaces/shared/symlinks/emacs/.emacs.d/nathancox.org
   (setq sentence-end-double-space nil)