Skip to content

Instantly share code, notes, and snippets.

@RillonDodgers
Last active March 5, 2025 17:14
Show Gist options
  • Save RillonDodgers/ae2263b4df15ea16c3da88029029802c to your computer and use it in GitHub Desktop.
Save RillonDodgers/ae2263b4df15ea16c3da88029029802c to your computer and use it in GitHub Desktop.
WezTerm config
local wezterm = require 'wezterm'
local config = {}
-- Miscellaneous
config.audible_bell = 'Disabled'
config.hide_tab_bar_if_only_one_tab = true
config.color_scheme = 'Gruvbox dark, medium (base16)'
config.scrollback_lines = 10000
-- Font config
config.font = wezterm.font 'JetBrains Mono'
config.font_size = 16.5
config.line_height = 1.2
-- Key bindings
config.keys = {
{
key = 'r',
mods = 'CMD|SHIFT',
action = wezterm.action.ReloadConfiguration,
},
{
key = '(',
mods = 'CTRL|SHIFT',
action = wezterm.action.SplitHorizontal { domain = 'CurrentPaneDomain' },
},
{
key = ')',
mods = 'CTRL|SHIFT',
action = wezterm.action.SplitVertical { domain = 'CurrentPaneDomain' },
},
}
return config
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment