diff options
Diffstat (limited to 'config.org')
-rw-r--r-- | config.org | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/config.org b/config.org index 57fa650..0788f14 100644 --- a/config.org +++ b/config.org @@ -235,7 +235,7 @@ The default for this is eight, and i hoped that by setting it to nine there woul Don't add anything to the mode line. -#+begin_src elisp +#+begin_src elisp :tangle no (setopt calendar-mode-line-format nil) #+end_src @@ -276,7 +276,7 @@ Below that, show a line and column coördinate. There are special minor modes t I don't know exactly what the final variable covers, so i keep it here so that if something shows up i know that it gets put here. Because i have a global mode line in my tab bar, some of the things that would otherwise be here (like the time, battery percentage, and notifications for chat buffers) don't show up. -#+begin_src elisp +#+begin_src elisp :tangle no (setq-default mode-line-format nil) (setq-default header-line-format '("%1*%1+%1@ " @@ -401,13 +401,13 @@ By default, the point has to be after a paren for it to be highlighted. But oft ** Tab bar -#+begin_src elisp +#+begin_src elisp :tangle no (setopt tab-bar-mode t) (setopt tab-bar-format '(tab-bar-format-menu-bar - ;; tab-bar-format-history - ;; tab-bar-format-tabs - ;; tab-bar-separator - ;; tab-bar-format-add-tab + tab-bar-format-history + tab-bar-format-tabs + tab-bar-separator + tab-bar-format-add-tab tab-bar-format-align-right tab-bar-format-global)) (setopt tab-bar-tab-hints t) |