diff options
| author | Ibrahim Muftee <ibrahim@muftee.net> | 2024-10-03 17:47:31 -0500 |
|---|---|---|
| committer | Ibrahim Muftee <ibrahim@muftee.net> | 2026-07-01 00:23:31 -0400 |
| commit | 5bf3bee2b3a68066cdd1928a6e64a302fde0d6c8 (patch) | |
| tree | 005a7923ea14614a7d136db99205c2d505517ba8 | |
| parent | 91515fa37b34ea9ee0df507f53605745d29379f3 (diff) | |
feat(wezterm): implement tab styling
| -rw-r--r-- | dot_config/wezterm/wezterm.lua | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/dot_config/wezterm/wezterm.lua b/dot_config/wezterm/wezterm.lua index 0f225a9..fc0608e 100644 --- a/dot_config/wezterm/wezterm.lua +++ b/dot_config/wezterm/wezterm.lua @@ -1,8 +1,13 @@ +---@diagnostic disable: undefined-global +-- vim:ft=lua + -- wezterm.lua -- Main wezterm config file +-- local wezterm = require("wezterm") local keys = require("keys") +local tabs = require("tabs") local chezmoi = require("chezmoi") local font = wezterm.font_with_fallback({ @@ -19,10 +24,15 @@ local config = { font_size = font_size, initial_cols = width, initial_rows = length, + -- TODO: Create custom color scheme in separate module (colors.lua) color_scheme = "Gruvbox dark, medium (base16)", + window_background_opacity = 0.9, + use_fancy_tab_bar = false, - show_tabs_in_tab_bar = false, + show_tabs_in_tab_bar = true, show_new_tab_button_in_tab_bar = false, + tab_bar_style = tabs.tab_bar_style, + default_prog = { chezmoi.shell }, leader = keys.leader, |
