dotfiles-mirror/.wezterm.lua

17 lines
460 B
Lua
Raw Normal View History

local wezterm = require("wezterm")
2025-10-26 23:13:27 +03:30
local config = wezterm.config_builder()
config.font_size = 15
config.color_scheme = "Mashup Colors (terminal.sexy)"
2025-10-26 23:13:27 +03:30
config.window_padding = {
left = 4,
right = 4,
top = 4,
bottom = 4,
2025-10-26 23:13:27 +03:30
}
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"
2025-10-26 23:13:27 +03:30
return config