From 98283cad2aaf165df165cc23edd7acfbfd84000a Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Thu, 4 Aug 2022 17:22:35 +0200 Subject: [PATCH] Reduce content of tab bar Using `tab-bar-format-align-right` does not work, as it moves the remaining text too much to the right so that it wraps over. --- init.el | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index 15d6ded..3af755c 100644 --- a/init.el +++ b/init.el @@ -578,7 +578,12 @@ math-units-table nil)) (use-package tab-bar - :init (setq tab-bar-show t) + :init (setq tab-bar-show t + tab-bar-format '(tab-bar-format-tabs + tab-bar-separator + ;; tab-bar-format-align-right + ;; current-time-string + )) :config (progn (tab-bar-history-mode +1)))