From fb39be1cdeae1d2bed964c63e2005a950b5ca6a2 Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Thu, 27 Mar 2025 10:59:33 -0400 Subject: [PATCH] Update README.md --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6df0b84..3fd4e4f 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,7 @@ In addition to *minimal-emacs.d*, startup speed is influenced by your computer's - [Asynchronous code formatting without cursor disruption](#asynchronous-code-formatting-without-cursor-disruption) - [A better Emacs *help* buffer](#a-better-emacs-help-buffer) - [Enhancing the Elisp development experience](#enhancing-the-elisp-development-experience) + - [Showing the tab-bar](#showing-the-tab-bar) - [Preventing Emacs from saving custom.el](#preventing-emacs-from-saving-customel) - [Which other customizations can be interesting to add?](#which-other-customizations-can-be-interesting-to-add) - [Customizations: pre-early-init.el](#customizations-pre-early-initel) @@ -900,6 +901,13 @@ Other optional packages that may be useful include: elisp-refs-symbol)) ``` +### Showing the tab-bar + +Configure the `tab-bar-show` variable to 1 to display the tab bar exclusively when multiple tabs are open: +```elisp +(setopt tab-bar-show 1) +``` + ### Preventing Emacs from saving custom.el To prevent Emacs from saving customization information to a custom file, set `custom-file` to `null-device` by adding to the following to `~/.emacs.d/post-init.el`: @@ -1285,7 +1293,9 @@ A drawback of using the early-init phase instead of init is that if a package fa - [Victor Dorneanu's minimal-emacs.d configuration](https://github.com/dorneanu/dotfiles/blob/master/minimal-emacs/config.org) -- [flowfx emacs.d](https://codeberg.org/flowfx/emacs.d) +- [Flowfx emacs.d](https://codeberg.org/flowfx/emacs.d) + +- [John B. Sigman: A literate Emacs configuration inspired by minimal-emacs.d](https://www.johnsigman.com/projects/emacs_config/) - [Mark Norton's minimal-emacs.d configuration](https://github.com/Remillard/minimal-emacs.d/tree/develop)