Created
December 12, 2025 00:24
-
-
Save mike-ward/5d805ca77cfebb88d362722b094b97dc to your computer and use it in GitHub Desktop.
wezterm config
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 = wezterm.config_builder() | |
| config.font_size = 13 | |
| config.font = wezterm.font("JetBrains Mono", {weight="Bold", stretch="Normal", style="Normal"}) | |
| config.window_decorations = "RESIZE" | |
| config.hide_tab_bar_if_only_one_tab = true | |
| config.automatically_reload_config = true | |
| config.window_background_opacity = 0.7 | |
| config.macos_window_background_blur = 20 | |
| config.colors = { | |
| background = '#111120' | |
| } | |
| config.keys = { | |
| { | |
| key = 'd', | |
| mods = 'CMD', | |
| action = wezterm.action.SplitHorizontal { domain = 'CurrentPaneDomain' }, | |
| }, | |
| { | |
| key = 'd', | |
| mods = 'SHIFT|SUPER', | |
| action = wezterm.action.SplitVertical { domain = 'CurrentPaneDomain' }, | |
| }, | |
| } | |
| -- Finally, return the configuration to wezterm: | |
| return config |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment