diff options
Diffstat (limited to 'dot_config')
| -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, |
