Skip to content

Instantly share code, notes, and snippets.

@jcpsimmons
Created October 21, 2025 17:41
Show Gist options
  • Select an option

  • Save jcpsimmons/1e47614bd7a7f3f9119306243b947db2 to your computer and use it in GitHub Desktop.

Select an option

Save jcpsimmons/1e47614bd7a7f3f9119306243b947db2 to your computer and use it in GitHub Desktop.
wezterm
local wezterm = require("wezterm")
local config = {}
config.color_scheme = "Homebrew (Gogh)"
config.font = wezterm.font("BigBlueTermPlus Nerd Font")
config.font_size = 16
config.line_height = 1.07
config.text_background_opacity = 1.0
config.hide_tab_bar_if_only_one_tab = true
config.window_background_opacity = 0.75
config.macos_window_background_blur = 12
config.initial_cols = 120
config.initial_rows = 40
config.window_decorations = "RESIZE"
config.text_blink_rate = 300
config.keys = {
{
key = "LeftArrow",
mods = "OPT",
action = wezterm.action.SendKey({ key = "b", mods = "ALT" }),
},
{
key = "RightArrow",
mods = "OPT",
action = wezterm.action.SendKey({ key = "f", mods = "ALT" }),
},
}
return config
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment