Last active
September 13, 2025 09:33
-
-
Save faimin/a1d21f60765c94e0fe58e3166f23ea22 to your computer and use it in GitHub Desktop.
wezterm.lua
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
| -- 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