Created
June 19, 2022 08:22
-
-
Save gordinmitya/a3713995df8e5fc70ff7c5ed3a6c8951 to your computer and use it in GitHub Desktop.
github.com/wez/wezterm config
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
-- ~/.wezterm.lua | |
local wezterm = require 'wezterm'; | |
return { | |
keys = { | |
{key="w", mods="CMD", action=wezterm.action{CloseCurrentPane={confirm=true}}}, | |
{key="d", mods="CMD", action=wezterm.action{SplitVertical={domain="CurrentPaneDomain"}}}, | |
{key="d", mods="CMD|SHIFT", action=wezterm.action{SplitHorizontal={domain="CurrentPaneDomain"}}}, | |
}, | |
window_decorations = "RESIZE", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment