Skip to content

Instantly share code, notes, and snippets.

@mike-ward
Created December 12, 2025 00:24
Show Gist options
  • Select an option

  • Save mike-ward/5d805ca77cfebb88d362722b094b97dc to your computer and use it in GitHub Desktop.

Select an option

Save mike-ward/5d805ca77cfebb88d362722b094b97dc to your computer and use it in GitHub Desktop.
wezterm config
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