From 31f55e8fceb40964ec63f180fdcff420fe820f45 Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Fri, 30 Aug 2024 00:23:40 -0400 Subject: [PATCH] Update README.md --- README.md | 9 --------- 1 file changed, 9 deletions(-) diff --git a/README.md b/README.md index 754304e..246f36b 100644 --- a/README.md +++ b/README.md @@ -169,15 +169,6 @@ The recentf, savehist, saveplace, and auto-revert built-in packages are already (add-hook 'after-init-hook #'save-place-mode) ``` -### Ensuring a single window at Emacs startup (automatically closing other windows, including compilation and warning windows) - -If you find it frustrating when multiple windows open upon Emacs startup (compilation window, warnings, etc.), add the following to `~/.emacs.d/post-init.el`: -``` -(add-hook 'window-setup-hook 'delete-other-windows) -``` - -This ensures that only one window remains open when Emacs starts, which is helpful if you prefer a clean and focused workspace instead of a cluttered screen filled with multiple split windows. - ### Optimization: Native Compilation Check if native compilation is enabled by evaluating `(native-comp-available-p)` in Emacs. If the result is non-nil, it indicates that native compilation is active.