diff options
author | JSDurand <mmemmew@gmail.com> | 2022-04-12 15:34:48 +0800 |
---|---|---|
committer | JSDurand <mmemmew@gmail.com> | 2022-04-12 15:34:48 +0800 |
commit | 0e834171fe8247a62582a5d7f59cfa38cb581c1f (patch) | |
tree | 4d1c5ad45be2da423926fb10730be727ef436104 | |
parent | ef4428a957feae268a01bfbd1858aaa059cfab4f (diff) |
tab: set tab-bar-format to nil
I do not use the tab-bar line. I tried to use it, but I prefer the
top of the Emacs stay clean.
-rw-r--r-- | tab-conf.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tab-conf.el b/tab-conf.el index d720cb6..de04d73 100644 --- a/tab-conf.el +++ b/tab-conf.el @@ -2,6 +2,8 @@ (require 'tab-bar) +(setq tab-bar-format nil) + (define-key tab-switcher-mode-map (vector ?n) 'tab-switcher-next-or-first) (define-key tab-switcher-mode-map (vector ?p) 'tab-switcher-prev-or-last) (define-key tab-prefix-map (vector 'tab) 'tab-switcher) |