From 355a9cad7ef37ec11ec9907d8c124fc9ab719a9d Mon Sep 17 00:00:00 2001 From: Daveanand Mannie Date: Fri, 13 Sep 2024 14:50:44 -0400 Subject: [PATCH] added a keybind for full screen --- wezterm.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wezterm.lua b/wezterm.lua index 2b1cfdc..60f0cda 100644 --- a/wezterm.lua +++ b/wezterm.lua @@ -5,7 +5,7 @@ local config = wezterm.config_builder() -- workspace dir default config.default_cwd = "C:/Users/support/Desktop/workspace" -- default term prog can be changed with cli args -config.default_prog = { "C:/Program Files/PowerShell/7/pwsh.exe" , '-nologo'} +config.default_prog = { "C:/Program Files/PowerShell/7/pwsh.exe", "-nologo" } --styles config.harfbuzz_features = { "calt=0", "clig=0", "liga=0" } @@ -31,6 +31,7 @@ local act = wezterm.action config.keys = { { key = "l", mods = "ALT", action = act.ActivateTabRelative(1) }, { key = "h", mods = "ALT", action = act.ActivateTabRelative(-1) }, + { key = "f", mods = "ALT", action = act.ToggleFullScreen }, } return config