From 8c0b003d2d0e8d8174de480fde9197e3f08732a3 Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Thu, 20 Jun 2024 15:48:28 -0400 Subject: [PATCH] Add more optimizations and better defaults --- early-init.el | 1 + init.el | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/early-init.el b/early-init.el index 8eedc9b..e6ced99 100644 --- a/early-init.el +++ b/early-init.el @@ -154,6 +154,7 @@ (push '(menu-bar-lines . 0) default-frame-alist) (push '(tool-bar-lines . 0) default-frame-alist) (push '(vertical-scroll-bars) default-frame-alist) +(push '(horizontal-scroll-bars) default-frame-alist) (setq menu-bar-mode nil tool-bar-mode nil scroll-bar-mode nil) diff --git a/init.el b/init.el index d6410da..ee43b79 100644 --- a/init.el +++ b/init.el @@ -135,9 +135,6 @@ ;;; Minimal UI -;; Show feedback after typing -(setq echo-keystrokes 0.02) - ;; Disable GUIs because theyr are inconsistent across systems, desktop ;; environments, and themes, and they don't match the look of Emacs. (setq use-file-dialog nil)