diff options
Diffstat (limited to 'dot_config')
| -rw-r--r-- | dot_config/wezterm/tabs.lua | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/dot_config/wezterm/tabs.lua b/dot_config/wezterm/tabs.lua new file mode 100644 index 0000000..53c5548 --- /dev/null +++ b/dot_config/wezterm/tabs.lua @@ -0,0 +1,24 @@ +local wezterm = require("wezterm") + +local M = { + tab_bar_style = { + active_tab_left = wezterm.format({ + { Background = { Color = "#3c3836" } }, + { Foreground = { Color = "#ebdbb2" } }, + }), + active_tab_right = wezterm.format({ + { Background = { Color = "#3c3836" } }, + { Foreground = { Color = "#ebdbb2" } }, + }), + inactive_tab_left = wezterm.format({ + { Background = { Color = "#665c34" } }, + { Foreground = { Color = "#bdae93" } }, + }), + inactive_tab_right = wezterm.format({ + { Background = { Color = "#665c34" } }, + { Foreground = { Color = "#bdae93" } }, + }), + }, +} + +return M |
