Skip to content

Commit

Permalink
Add keybindings to change/reset terminal font size
Browse files Browse the repository at this point in the history
  • Loading branch information
francishamel committed Dec 11, 2024
1 parent dc459dd commit ecafaaf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions home-manager/modules/wezterm/wezterm.lua
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ config.keys = {

{ key = "c", mods = "CMD", action = act.CopyTo("Clipboard") },
{ key = "v", mods = "CMD", action = act.PasteFrom("Clipboard") },

{ key = "=", mods = "CMD", action = act.IncreaseFontSize },
{ key = "-", mods = "CMD", action = act.DecreaseFontSize },
{ key = "0", mods = "CMD", action = act.ResetFontSize },
}

return config

0 comments on commit ecafaaf

Please sign in to comment.