Created
March 13, 2023 06:14
-
-
Save cobodo/42f9fb3ee875c7753a99a9b6e40c5e29 to your computer and use it in GitHub Desktop.
~/.config/wezterm/wezterm.lua
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'; | |
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