Created
March 24, 2023 20:30
-
-
Save smook1980/3c5067d7ad5f49a2a6311910e033441b to your computer and use it in GitHub Desktop.
My WezTerm conifg
This file contains hidden or 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 | |
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