From cf741d3ae6253f7e9ec463a7b07da3740586c6cc Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Tue, 21 Nov 2023 19:41:03 +0000 Subject: [PATCH] Tweak tab settings & kitty_mod * Move tabline to the top * tweak highlight settings to match tmux & (n)vim * Change kitty_mod to alt+shift from ctrl+shift --- kitty.conf | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/kitty.conf b/kitty.conf index 810b403..94810f5 100644 --- a/kitty.conf +++ b/kitty.conf @@ -631,7 +631,7 @@ confirm_os_window_close 0 #: Tab bar {{{ -tab_bar_edge bottom +tab_bar_edge top #: Which edge to show the tab bar on, top or bottom @@ -678,7 +678,7 @@ tab_fade 0.25 0.5 0.75 1 #: can change the number of cells used by adding/removing entries to #: this list. -tab_separator " ┇" +tab_separator " " #: The separator between tabs in the tab bar when using separator as #: the tab_bar_style. @@ -694,7 +694,7 @@ tab_activity_symbol none #: Some text or a unicode symbol to show on the tab if a window in the #: tab that does not have focus has some activity. -tab_title_template "{title}" +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 @@ -715,16 +715,16 @@ active_tab_title_template none #: Template to use for active tabs, if not specified falls back to #: tab_title_template. -active_tab_foreground #000 -active_tab_background #eee -active_tab_font_style bold-italic -inactive_tab_foreground #444 -inactive_tab_background #999 +active_tab_foreground white +active_tab_background #121212 +active_tab_font_style normal +inactive_tab_foreground #585858 +inactive_tab_background #121212 inactive_tab_font_style normal #: Tab bar colors and styles -tab_bar_background none +tab_bar_background #121212 #: Background color for the tab bar. Defaults to using the terminal #: background color. @@ -1271,14 +1271,14 @@ map kitty_mod+0 tenth_window #: Tab management {{{ -map kitty_mod+right next_tab -map kitty_mod+left previous_tab +map kitty_mod+] next_tab +map kitty_mod+[ previous_tab map kitty_mod+t new_tab -map kitty_mod+q close_tab +map kitty_mod+w close_tab map shift+cmd+w close_os_window map kitty_mod+. move_tab_forward map kitty_mod+, move_tab_backward -map kitty_mod+alt+t set_tab_title +map kitty_mod+r set_tab_title #: You can also create shortcuts to go to specific tabs, with 1 being #: the first tab, 2 the second tab and -1 being the previously active