Skip to content

Instantly share code, notes, and snippets.

@cheeze2000
Created October 25, 2024 12:49
Show Gist options
  • Save cheeze2000/acabfa25cadf283dfb1f929c5ad6c228 to your computer and use it in GitHub Desktop.
Save cheeze2000/acabfa25cadf283dfb1f929c5ad6c228 to your computer and use it in GitHub Desktop.
local wezterm = require("wezterm")
local mux = wezterm.mux
local config = wezterm.config_builder()
config.audible_bell = "Disabled"
config.color_scheme = "OneHalfDark"
config.default_prog = { "/opt/homebrew/bin/fish" }
config.font = wezterm.font("Inconsolata Nerd Font")
config.font_size = 17
wezterm.on("gui-startup", function(cmd)
local _, _, window = mux.spawn_window(cmd or {})
window:gui_window():maximize()
end)
return config
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment