Skip to content

Instantly share code, notes, and snippets.

@STBoyden
Last active April 17, 2023 13:42
Show Gist options
  • Select an option

  • Save STBoyden/f01f3dd1fd873e28820c6b1019d2fa40 to your computer and use it in GitHub Desktop.

Select an option

Save STBoyden/f01f3dd1fd873e28820c6b1019d2fa40 to your computer and use it in GitHub Desktop.
Wezterm Configuration (Linux)
local wezterm = require("wezterm")
local config = {}
if wezterm.config_builder then
config = wezterm.config_builder()
end
config.use_fancy_tab_bar = false
config.hide_tab_bar_if_only_one_tab = true
config.font_size = 14.0
config.default_prog = { "/var/home/sboyden/.cargo/bin/nu" }
config.color_scheme = "carbonfox"
config.initial_cols = 120
config.initial_rows = 30
config.window_padding = {
left = 0,
right = 0,
top = 0,
bottom = 0,
}
config.window_frame = {
active_titlebar_bg = "#161616",
button_bg = "#161616",
}
return config
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment