From 02f3624b6f81c82d3d9521db80e0b0eb3f02ecec Mon Sep 17 00:00:00 2001 From: Wesley Irvin Date: Wed, 23 Oct 2024 12:15:47 -0400 Subject: [PATCH] Wezterm Added in a configuration for wezterm that is close to the configuration that we have for kitty. --- wezterm/dot-wezterm.lua | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 wezterm/dot-wezterm.lua diff --git a/wezterm/dot-wezterm.lua b/wezterm/dot-wezterm.lua new file mode 100644 index 0000000..40b7d4e --- /dev/null +++ b/wezterm/dot-wezterm.lua @@ -0,0 +1,14 @@ +-- Pull in the wezterm API +local wezterm = require("wezterm") + +-- This will hold the configuration +local config = wezterm.config_builder() + +config.color_scheme = 'tokyonight_storm' +config.window_background_opacity = 0.95 +config.enable_tab_bar = false +config.initial_cols = 205 +config.initial_rows = 45 +config.font_size = 10 + +return config -- 2.49.1