Created
March 25, 2026 20:21
-
-
Save tkroo/5d65502bf0f9abfd9f22b5a1474f67dc to your computer and use it in GitHub Desktop.
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
| -- 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