Last active
March 5, 2025 17:14
-
-
Save RillonDodgers/ae2263b4df15ea16c3da88029029802c 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 = {} | |
-- 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