Created
July 11, 2025 08:23
-
-
Save plainOldCode/f92aa1f146eb830312cc8f8940355f68 to your computer and use it in GitHub Desktop.
.wezterm.lua
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 table will hold the configuration. | |
local config = {} | |
-- In newer versions of wezterm, use the config_builder which will | |
-- help provide clearer error messages | |
if wezterm.config_builder then | |
config = wezterm.config_builder() | |
end | |
-- This is where you actually apply your config choices | |
config.font = wezterm.font 'Roboto Mono for Powerline' | |
config.font_size = 16.0 | |
config.hide_tab_bar_if_only_one_tab = true | |
config.window_padding = { | |
left = '0cell', | |
right = '0cell', | |
top = '0cell', | |
bottom = '0cell', | |
} | |
-- For example, changing the color scheme: | |
config.color_scheme = 'Solarized (dark) (terminal.sexy)' | |
-- 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