Skip to content

Instantly share code, notes, and snippets.

@mterring
Created January 29, 2024 03:09
Show Gist options
  • Save mterring/6f0543746c62f4a68a31fcdd8713c072 to your computer and use it in GitHub Desktop.
Save mterring/6f0543746c62f4a68a31fcdd8713c072 to your computer and use it in GitHub Desktop.
Wezterm config
-- 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.color_scheme = "Gruvbox light, medium (base16)"
config.hide_tab_bar_if_only_one_tab = true
config.term = "wezterm"
config.harfbuzz_features = { "calt=0", "clig=0", "liga=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