Created
October 21, 2025 17:41
-
-
Save jcpsimmons/1e47614bd7a7f3f9119306243b947db2 to your computer and use it in GitHub Desktop.
wezterm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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