summaryrefslogtreecommitdiff
path: root/dot_config/wezterm
diff options
context:
space:
mode:
authorIbrahim Muftee <ibrahim@muftee.net>2024-04-15 16:31:43 -0500
committerIbrahim Muftee <ibrahim@muftee.net>2026-07-01 00:23:31 -0400
commit79340591f91fb186b963fc9f3ed23c105d4fba93 (patch)
treea406017423e1168e9356e7b9604dcc3bc2cd2f74 /dot_config/wezterm
parent5a02065c2537412a84ea0fd9774530329993fc1d (diff)
feat(wezterm): set bigger default window dimensions
Diffstat (limited to 'dot_config/wezterm')
-rw-r--r--dot_config/wezterm/wezterm.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/dot_config/wezterm/wezterm.lua b/dot_config/wezterm/wezterm.lua
index bdfcfcb..021ed51 100644
--- a/dot_config/wezterm/wezterm.lua
+++ b/dot_config/wezterm/wezterm.lua
@@ -8,10 +8,14 @@ local font = wezterm.font_with_fallback({
})
local font_size = 12
+local width = 120
+local length = 40
local config = {
font = font,
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)
window_background_opacity = 0.9,