30 lines
639 B
Lua
30 lines
639 B
Lua
local wezterm = require("wezterm")
|
|
|
|
local config = {
|
|
enable_tab_bar = false,
|
|
window_decorations = "RESIZE",
|
|
window_close_confirmation = "NeverPrompt",
|
|
font = wezterm.font("MesloLGS Nerd Font Mono"),
|
|
font_size = 14.0,
|
|
color_scheme = "Catppuccin Mocha",
|
|
-- color_scheme = "carbonfox",
|
|
window_background_opacity = 0.95,
|
|
window_padding = {
|
|
left = 0,
|
|
right = 0,
|
|
top = 0,
|
|
bottom = 0,
|
|
},
|
|
macos_window_background_blur = 10,
|
|
}
|
|
|
|
-- uncomment this if not using with some wm
|
|
local mux = wezterm.mux
|
|
|
|
wezterm.on("gui-startup", function()
|
|
local _, _, window = mux.spawn_window({})
|
|
window:gui_window():maximize()
|
|
end)
|
|
|
|
return config
|