Skip to content

Instantly share code, notes, and snippets.

@tenthree
Created July 25, 2025 03:28
Show Gist options
  • Save tenthree/00e6d3850b2b1478eef93819abd9f5f5 to your computer and use it in GitHub Desktop.
Save tenthree/00e6d3850b2b1478eef93819abd9f5f5 to your computer and use it in GitHub Desktop.
wezterm config
-- Pull in the wezterm API
local wezterm = require("wezterm")
-- This will hold the configuration.
local config = wezterm.config_builder()
config.font = wezterm.font("JetBrains Mono")
-- For example, changing the color scheme:
config.color_scheme = "Everforest Dark (Gogh)"
config.window_background_opacity = 0.85
-- config.window_decorations = "RESIZE"
config.window_padding = {
left = 0,
right = 0,
top = 0,
bottom = 0,
}
-- and finally, 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