diff --git a/.wezterm.lua b/.wezterm.lua new file mode 100644 index 0000000..214b675 --- /dev/null +++ b/.wezterm.lua @@ -0,0 +1,13 @@ +local wezterm = require 'wezterm' +local config = {} + +config.keys = { + { + key = '[', + mods = 'SUPER', + action = wezterm.action.SplitHorizontal { domain = 'CurrentPaneDomain' }, + }, +} + +config.font = wezterm.font 'JetBrains Mono' +return config