From fdc149e9ec629bb53eb334537357928254c5671e Mon Sep 17 00:00:00 2001 From: Anton Volnuhin Date: Fri, 22 May 2026 03:11:32 +0300 Subject: [PATCH] small updates to tabs, agy --- private_dot_config/kitty/tab_bar.py | 5 ++++- private_dot_config/private_fish/config.fish | 4 ++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/private_dot_config/kitty/tab_bar.py b/private_dot_config/kitty/tab_bar.py index b0e5c4f..ac37265 100644 --- a/private_dot_config/kitty/tab_bar.py +++ b/private_dot_config/kitty/tab_bar.py @@ -8,10 +8,11 @@ def draw_tab( ) -> int: orig_fg = screen.cursor.fg orig_bg = screen.cursor.bg + default_bg = int(draw_data.default_bg) left_sep, right_sep = ('', '') def draw_sep(which: str) -> None: - screen.cursor.bg = int(draw_data.default_bg) + screen.cursor.bg = default_bg screen.cursor.fg = orig_bg screen.draw(which) screen.cursor.bg = orig_bg @@ -41,4 +42,6 @@ def draw_tab( draw_sep(right_sep) draw_sep(' ') + screen.cursor.bg = default_bg + screen.cursor.fg = orig_fg return screen.cursor.x diff --git a/private_dot_config/private_fish/config.fish b/private_dot_config/private_fish/config.fish index 38e2d86..d59c78b 100644 --- a/private_dot_config/private_fish/config.fish +++ b/private_dot_config/private_fish/config.fish @@ -190,3 +190,7 @@ source ~/.orbstack/shell/init2.fish 2>/dev/null || : # GitHub MCP plugin auth — pull PAT from keychain (avoids plaintext in config files) set -gx GITHUB_PERSONAL_ACCESS_TOKEN (security find-generic-password -s codex-github-mcp-pat -w 2>/dev/null) + + +# Added by Antigravity CLI installer +set -gx PATH "/Users/anton/.local/bin" $PATH