1
0
chezmoi/home/dot_config/kitty/tabbar.conf
Jeff LANCE ec29e4b798 Add home/.config/kitty/advanced.conf
Add home/.config/kitty/colorscheme.conf
Add home/.config/kitty/cursor.conf
Add home/.config/kitty/fonts.conf
Add home/.config/kitty/keyboard.conf
Add home/.config/kitty/kitty.conf
Add home/.config/kitty/kitty.conf.ori
Add home/.config/kitty/mouse.conf
Add home/.config/kitty/os_specific.conf
Add home/.config/kitty/performance_tuning.conf
Add home/.config/kitty/scrollback.conf
Add home/.config/kitty/session_multiple.conf
Add home/.config/kitty/session_single.conf
Add home/.config/kitty/tabbar.conf
Add home/.config/kitty/terminal_bell.conf
Add home/.config/kitty/window_layout.conf
2024-03-02 13:31:21 +01:00

79 lines
2.4 KiB
Plaintext

# vim:fileencoding=utf-8:ft=conf:foldmethod=marker
#: Tab bar {{{
tab_bar_edge bottom
#: Which edge to show the tab bar on, top or bottom
tab_bar_margin_width 0.0
#: The margin to the left and right of the tab bar (in pts)
tab_bar_margin_height 10.0 5.0
#: The margin above and below the tab bar (in pts). The first number is
#: the margin between the edge of the OS Window and the tab bar and the
#: second number is the margin between the tab bar and the contents of
#: the current tab.
tab_bar_style powerline
#: The tab bar style, can be one of: fade, separator or hidden. In the
#: fade style, each tab's edges fade into the background color, in the
#: separator style, tabs are separated by a configurable separator.
tab_bar_min_tabs 2
#: The minimum number of tabs that must exist before the tab bar is
#: shown
tab_switch_strategy previous
#: The algorithm to use when switching to a tab when the current tab
#: is closed. The default of previous will switch to the last used
#: tab. A value of left will switch to the tab to the left of the
#: closed tab. A value of last will switch to the right-most tab.
tab_fade 0.25 0.5 0.75 1
#: Control how each tab fades into the background when using fade for
#: the tab_bar_style. Each number is an alpha (between zero and one)
#: that controls how much the corresponding cell fades into the
#: background, with zero being no fade and one being full fade. You
#: can change the number of cells used by adding/removing entries to
#: this list.
tab_separator " ┇ "
#: The separator between tabs in the tab bar when using separator as
#: the tab_bar_style.
tab_powerline_style angled
#: The powerline separator style between tabs in the tab bar when using
#: powerline as the tab_bar_style, can be one of: angled, slanted, or round.
tab_title_template {index}: {title}
#: A template to render the tab title. The default just renders the
#: title. If you wish to include the tab-index as well, use something
#: like: {index}: {title}. Useful if you have shortcuts mapped for
#: goto_tab N.
# active_tab_foreground #00FF66
active_tab_foreground #AF0CBA
active_tab_background #000
active_tab_font_style normal
inactive_tab_foreground #fff
inactive_tab_background #000
inactive_tab_font_style normal
#: Tab bar colors and styles
tab_bar_background none
#: Background color for the tab bar. Defaults to using the terminal background color.
#: }}}