Skip to content

Instantly share code, notes, and snippets.

@gordinmitya
Created June 19, 2022 08:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gordinmitya/a3713995df8e5fc70ff7c5ed3a6c8951 to your computer and use it in GitHub Desktop.
Save gordinmitya/a3713995df8e5fc70ff7c5ed3a6c8951 to your computer and use it in GitHub Desktop.
github.com/wez/wezterm config
-- ~/.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