;;;;;;;;;;;;;;;;;;;;; tabbar ;;;;;;;;;;;;;;;;;;;;;;;;;;
(require ‘tabbar)
(tabbar-mode 1)
(global-set-key [(meta j)] ‘tabbar-forward)
(global-set-key [(meta k)] ‘tabbar-backward)
(set-face-attribute ‘tabbar-default nil
:background "gray"
:foreground "gray")
(set-face-attribute ‘tabbar-selected nil
:inherit ‘tabbar-default
:background "lightblue"
:box ‘(:line-width 1 :color "lightblack") )
(set-face-attribute ‘tabbar-unselected nil
:inherit ‘tabbar-default
:box ‘(:line-width 1 :color "gray"))
(custom-set-variables ‘(tabbar-separator (quote (1.5))))
效果:
时间: 2024-10-09 05:17:33