summaryrefslogtreecommitdiff
path: root/dot_config
diff options
context:
space:
mode:
authorIbrahim Muftee <ibrahim@muftee.net>2024-10-07 12:00:15 -0500
committerIbrahim Muftee <ibrahim@muftee.net>2026-07-01 00:23:31 -0400
commitcc93ad9289f8d5302228c1e3255c5a95a14cbaaa (patch)
treedf8d6dff76a88f49d419151ae292a86f93ef4060 /dot_config
parent6e9a3c4760db677489761791518b8b26dffa3e43 (diff)
fix(wezterm): remove transparency
Diffstat (limited to 'dot_config')
-rw-r--r--dot_config/wezterm/wezterm.lua32
1 files changed, 16 insertions, 16 deletions
diff --git a/dot_config/wezterm/wezterm.lua b/dot_config/wezterm/wezterm.lua
index fc0608e..14cd800 100644
--- a/dot_config/wezterm/wezterm.lua
+++ b/dot_config/wezterm/wezterm.lua
@@ -11,8 +11,8 @@ local tabs = require("tabs")
local chezmoi = require("chezmoi")
local font = wezterm.font_with_fallback({
- { family = "Iosevka Nerd Font" },
- { family = "JetBrains Mono" },
+ { family = "Iosevka Nerd Font" },
+ { family = "JetBrains Mono" },
})
local font_size = 12
@@ -20,23 +20,23 @@ local width = 120
local length = 40
local config = {
- font = font,
- 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,
+ font = font,
+ 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 = true,
- show_new_tab_button_in_tab_bar = false,
- tab_bar_style = tabs.tab_bar_style,
+ use_fancy_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 },
+ default_prog = { chezmoi.shell },
- leader = keys.leader,
- keys = keys.key_bindings,
+ leader = keys.leader,
+ keys = keys.key_bindings,
}
return config