Skip to content

Instantly share code, notes, and snippets.

@tkroo
Created March 25, 2026 20:21
Show Gist options
  • Select an option

  • Save tkroo/5d65502bf0f9abfd9f22b5a1474f67dc to your computer and use it in GitHub Desktop.

Select an option

Save tkroo/5d65502bf0f9abfd9f22b5a1474f67dc to your computer and use it in GitHub Desktop.
-- Pull in the wezterm API
local wezterm = require("wezterm")
local config = wezterm.config_builder()
config.font = wezterm.font("JetBrains Mono")
config.font_size = 10
config.line_height = 1.1
config.color_scheme = "Gruvbox dark, hard (base16)"
-- config.color_scheme = "Monokai Pro (Gogh)"
config.window_background_opacity = 1
config.use_fancy_tab_bar = true
config.tab_bar_at_bottom = false
config.tab_max_width = 40
config.launch_menu = {
{
label = "Supervolcano",
args = { "ssh", "david@supervolcano" },
},
{
label = "LePotato",
args = { "ssh", "david@lepotato" },
},
{
label = "Ubuntu",
args = { "wsl", "~" },
},
{
label = "Pwsh",
args = { "pwsh.exe", "-NoLogo" },
},
}
-- return the configuration to wezterm:
return config
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment