Created
July 25, 2025 03:28
-
-
Save tenthree/00e6d3850b2b1478eef93819abd9f5f5 to your computer and use it in GitHub Desktop.
wezterm config
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") | |
-- 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