remove tabs, bad idea

This commit is contained in:
opfez 2021-12-06 19:59:01 +01:00
parent a521736b14
commit 149f3ce729
1 changed files with 0 additions and 35 deletions

View File

@ -156,41 +156,6 @@
(add-hook 'lisp-mode-hook 'highlight-parentheses-mode)
(add-hook 'emacs-lisp-mode-hook 'highlight-parentheses-mode))
;; Show buffers as tabs
(use-package tabbar
:ensure t
:config
(setq tabbar-buffer-groups-function
(lambda ()
(list "All"))
tabbar-buffer-list-function
(lambda ()
(cl-remove-if
(lambda (buffer)
(and (not (equal (buffer-name buffer)
(buffer-name (current-buffer))))
(or (equal (aref (buffer-name buffer) 0) ?*)
(equal (aref (buffer-name buffer) 1) ?*))))
(buffer-list)))
tabbar-scroll-left-help-function nil
tabbar-scroll-right-help-function nil
tabbar-help-on-tab-function nil
tabbar-home-help-function nil
tabbar-buffer-home-button (quote (("") ""))
tabbar-scroll-left-button (quote (("") ""))
tabbar-scroll-right-button (quote (("") "")))
(setq tabbar-background-color "#111111") ;; the color of the tabbar background
(custom-set-variables
'(tabbar-separator '(1.0)))
(custom-set-faces
'(tabbar-default ((t (:inherit variable-pitch :background "#111111" :foreground "#eeeeee"))))
'(tabbar-button ((t (:inherit tabbar-default :foreground "dark red"))))
'(tabbar-button-highlight ((t (:inherit tabbar-default))))
'(tabbar-highlight ((t (:underline t))))
'(tabbar-selected ((t (:inherit tabbar-default :background "#000000"))))
'(tabbar-separator ((t (:inherit tabbar-default :background "#111111"))))
'(tabbar-unselected ((t (:inherit tabbar-default))))))
;; org-mode
(use-package org
:ensure t