local wezterm = require('wezterm') -- The filled in variant of the < symbol local SOLID_LEFT_ARROW = utf8.char(0xe0b2) -- The filled in variant of the > symbol local SOLID_RIGHT_ARROW = utf8.char(0xe0b0) return { hide_tab_bar_if_only_one_tab = true, tab_bar_style = { active_tab_left = wezterm.format({ { Background = { Color = '#0b0022' } }, { Foreground = { Color = '#3c1361' } }, { Text = SOLID_LEFT_ARROW }, }), active_tab_right = wezterm.format({ { Background = { Color = '#0b0022' } }, { Foreground = { Color = '#3c1361' } }, { Text = SOLID_RIGHT_ARROW }, }), inactive_tab_left = wezterm.format({ { Background = { Color = '#0b0022' } }, { Foreground = { Color = '#1b1032' } }, { Text = SOLID_LEFT_ARROW }, }), inactive_tab_right = wezterm.format({ { Background = { Color = '#0b0022' } }, { Foreground = { Color = '#1b1032' } }, { Text = SOLID_RIGHT_ARROW }, }), }, }