Files
.emacs.d/modules/navigation/siren-centaur-tabs.el
Jim Myhrberg a8618938bf feat(core): use general.el for keybind definitions nearly everywhere
Primarily this replaces :bind with :general in all use-package calls.
2022-03-14 21:16:15 +00:00

36 lines
908 B
EmacsLisp

;;; siren-centaur-tabs.el --- jimeh's Emacs Siren: centaur-tabs configuration.
;;; Commentary:
;; Basic configuration for centaur-tabs.
;;; Code:
(use-package centaur-tabs
:commands centaur-tabs-mode
:general
("s-[" 'centaur-tabs-backward-tab)
("s-]" 'centaur-tabs-forward-tab)
("s-<" 'centaur-tabs-backward-group)
("s->" 'centaur-tabs-forward-group)
:custom
(centaur-tabs-gray-out-icons 'buffer)
(centaur-tabs-height 32)
(centaur-tabs-modified-marker "") ;; Unicode Bullet (0x2022)
(centaur-tabs-set-bar 'over)
(centaur-tabs-set-icons t)
(centaur-tabs-set-modified-marker t)
(centaur-tabs-show-navigation-buttons nil)
(centaur-tabs-style "bar")
(centaur-tabs-enable-ido-completion nil)
:config
(centaur-tabs-mode t)
(centaur-tabs-headline-match)
(centaur-tabs-group-by-projectile-project))
(provide 'siren-centaur-tabs)
;;; siren-centaur-tabs.el ends here