mirror of
https://github.com/wez/wezterm.git
synced 2024-11-27 02:25:28 +03:00
eb4323ee59
```lua 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 { tab_bar_style = { active_tab_left = wezterm.format({ {Background={Color="#0b0022"}}, {Foreground={Color="#2b2042"}}, {Text=SOLID_LEFT_ARROW}, }), active_tab_right = wezterm.format({ {Background={Color="#0b0022"}}, {Foreground={Color="#2b2042"}}, {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}, }), } } ``` |
||
---|---|---|
.. | ||
src | ||
build.rs | ||
Cargo.toml |