summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dot_config/wezterm/wezterm.lua7
1 files changed, 4 insertions, 3 deletions
diff --git a/dot_config/wezterm/wezterm.lua b/dot_config/wezterm/wezterm.lua
index 021ed51..047f5c1 100644
--- a/dot_config/wezterm/wezterm.lua
+++ b/dot_config/wezterm/wezterm.lua
@@ -16,14 +16,15 @@ local config = {
font_size = font_size,
initial_cols = width,
initial_rows = length,
- color_scheme = "Gruvbox dark, medium (base16)", -- TODO: Create custom color scheme in separate module (colors.lua)
+ -- 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_new_tab_button_in_tab_bar = false,
-
- default_prog = { chezmoi.shell }, -- TODO: Change default shell when OS changes
+ -- TODO: Change default shell when OS changes
+ default_prog = { chezmoi.shell },
leader = keys.leader,
keys = keys.key_bindings,