Skip to content

Instantly share code, notes, and snippets.

@zQueal
Created July 7, 2024 08:38
Show Gist options
  • Save zQueal/c0a64995161e74c460ab106cb6b7f082 to your computer and use it in GitHub Desktop.
Save zQueal/c0a64995161e74c460ab106cb6b7f082 to your computer and use it in GitHub Desktop.
wezterm config
local wezterm = require "wezterm"
local act = wezterm.action
return {
hide_tab_bar_if_only_one_tab = true,
default_prog = {"elvish.exe"},
window_background_opacity = 1,
window_close_confirmation = "NeverPrompt",
initial_cols = 150,
initial_rows = 40,
font = wezterm.font("MonoLisa Nerd Font Mono"),
font_size = 10.0,
color_scheme = "Gruvbox dark, medium (base16)",
keys = {
{
key = "|",
mods = "CTRL|SHIFT",
action = act.SplitHorizontal {domain = "CurrentPaneDomain"}
},
{
key = "_",
mods = "CTRL|SHIFT",
action = act.SplitVertical {domain = "CurrentPaneDomain"}
},
{
key = "LeftArrow",
mods = "CTRL|SHIFT",
action = act.ActivatePaneDirection "Left"
},
{
key = "RightArrow",
mods = "CTRL|SHIFT",
action = act.ActivatePaneDirection "Right"
},
{
key = "UpArrow",
mods = "CTRL|SHIFT",
action = act.ActivatePaneDirection "Up"
},
{
key = "DownArrow",
mods = "CTRL|SHIFT",
action = act.ActivatePaneDirection "Down"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment