Created
July 7, 2024 08:38
-
-
Save zQueal/c0a64995161e74c460ab106cb6b7f082 to your computer and use it in GitHub Desktop.
wezterm config
This file contains 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
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