blob: bdf025701e60f6cc2235a29b38ec3d62aaba1e00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
local wezterm = require("wezterm")
local config = wezterm.config_builder()
config.font_size = 15
config.color_scheme = "Mashup Colors (terminal.sexy)"
config.window_padding = {
left = 4,
right = 4,
top = 4,
bottom = 4,
}
config.enable_tab_bar = false
config.font = wezterm.font("JetBrainsMono Nerd Font")
config.window_close_confirmation = "NeverPrompt"
config.window_background_opacity = 0.90
config.default_cursor_style = "SteadyUnderline"
return config
|