Created
October 25, 2024 12:49
-
-
Save cheeze2000/acabfa25cadf283dfb1f929c5ad6c228 to your computer and use it in GitHub Desktop.
This file contains 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
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