;;;;;;;;; ;; Tabbar http://blog.piranha.org.ua/2007/07/11/emacs-tabbar/ (setq load-path (cons "/home/alex/.emacs.d/emhacks" load-path)) (require 'tabbar) (tabbar-mode) (global-set-key [S-right] 'tabbar-forward-tab) (global-set-key [S-left] 'tabbar-backward-tab) (set-face-foreground 'tabbar-default "LightSteelBlue") (set-face-background 'tabbar-default "DarkSlateGray") (set-face-foreground 'tabbar-selected "pale green") (set-face-bold-p 'tabbar-selected t) (custom-set-variables) (custom-set-faces '(tabbar-selected ((t (:inherit tabbar-default :foreground "red4" :box (:line-width 1 :color "white" :style pressed-button) :weight bold)))) '(tabbar-default ((t (:inherit variable-pitch :background "gray75" :foreground "MidNightBlue" :slant normal :weight normal :height 120 :width normal :family "xos4-terminus")))))