diff --git a/.config/wezterm/config/keybinds.lua b/.config/wezterm/config/keybinds.lua index 2d9bd2ed..f6b5225b 100644 --- a/.config/wezterm/config/keybinds.lua +++ b/.config/wezterm/config/keybinds.lua @@ -57,7 +57,10 @@ return { { key = "=", mods = "CTRL", action = "IncreaseFontSize" }, { key = "-", mods = "CTRL", action = "DecreaseFontSize" }, { key = "0", mods = "CTRL", action = "ResetFontAndWindowSize" }, + + -- NOTE: Leader dependent binds { key = "h", mods = "LEADER", action = wezterm.action({ EmitEvent = "trigger-nvim-with-scrollback" }) }, + { key = "f", mods = "LEADER", action = wezterm.action.ToggleFullScreen }, -- NOTE: Quick bindings for in termal use { key = "w", mods = "LEADER", action = { SendString = "wgrep\x0D" } }, diff --git a/.config/wezterm/config/misc.lua b/.config/wezterm/config/misc.lua index 73ea7642..273c5d50 100644 --- a/.config/wezterm/config/misc.lua +++ b/.config/wezterm/config/misc.lua @@ -3,4 +3,5 @@ return { window_close_confirmation = "NeverPrompt", exit_behavior = "Close", scrollback_lines = 20000, + native_macos_fullscreen_mode = true, }