Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save plainOldCode/f92aa1f146eb830312cc8f8940355f68 to your computer and use it in GitHub Desktop.
Save plainOldCode/f92aa1f146eb830312cc8f8940355f68 to your computer and use it in GitHub Desktop.
.wezterm.lua
-- 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