Skip to content

Instantly share code, notes, and snippets.

@faimin
Last active September 13, 2025 09:33
Show Gist options
  • Save faimin/a1d21f60765c94e0fe58e3166f23ea22 to your computer and use it in GitHub Desktop.
Save faimin/a1d21f60765c94e0fe58e3166f23ea22 to your computer and use it in GitHub Desktop.
wezterm.lua
-- config path: '~/.config/wezterm/wezterm.lua'
local wezterm = require('wezterm')
local config = {}
if wezterm.config_builder then
config = wezterm.config_builder()
end
config.window_close_confirmation = 'NeverPrompt'
config.color_scheme = 'Shades of Purple (base16)'
config.font_size = 18
config.font = wezterm.font("FiraCode Nerd Font Mono", {
weight = "Medium",
italic = false
})
return config
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment