Skip to content

Instantly share code, notes, and snippets.

@smook1980
Created March 24, 2023 20:30
Show Gist options
  • Save smook1980/3c5067d7ad5f49a2a6311910e033441b to your computer and use it in GitHub Desktop.
Save smook1980/3c5067d7ad5f49a2a6311910e033441b to your computer and use it in GitHub Desktop.
My WezTerm conifg
local wezterm = require 'wezterm'
local mux = wezterm.mux
wezterm.on('gui-startup', function(cmd)
local tab, pane, window = mux.spawn_window(cmd or {})
window:gui_window():maximize()
end)
return {
font = wezterm.font('JetBrainsMono Nerd Font Mono'),
font_size = 13,
term = "wezterm",
visual_bell = {
fade_in_function = 'EaseIn',
fade_in_duration_ms = 150,
fade_out_function = 'EaseOut',
fade_out_duration_ms = 150,
},
colors = {
visual_bell = '#202020',
},
window_decorations = "RESIZE",
window_background_opacity = 0.9,
audible_bell = "Disabled",
adjust_window_size_when_changing_font_size = false,
color_scheme = "TokyoNight (Gogh)",
window_close_confirmation = "NeverPrompt",
enable_tab_bar = false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment