Skip to content

Instantly share code, notes, and snippets.

@cobodo
Created March 13, 2023 06:14
Show Gist options
  • Save cobodo/42f9fb3ee875c7753a99a9b6e40c5e29 to your computer and use it in GitHub Desktop.
Save cobodo/42f9fb3ee875c7753a99a9b6e40c5e29 to your computer and use it in GitHub Desktop.
~/.config/wezterm/wezterm.lua
local wezterm = require 'wezterm';
return {
font = wezterm.font("HackGen35 Console"),
font_size = 15,
font_hinting = None,
keys = {
{ key = "j", mods = "CTRL|SHIFT", action = wezterm.action.Nop },
{ key = ";", mods = "CTRL|SHIFT", action = wezterm.action.Nop },
{ key = "=", mods = "CMD", action = wezterm.action.IncreaseFontSize },
{ key = "LeftArrow", mods = "CMD|SHIFT", action = wezterm.action.MoveTabRelative(-1) },
{ key = "RightArrow", mods = "CMD|SHIFT", action = wezterm.action.MoveTabRelative(1) },
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment