2024-09-14 18:55:44 +05:30
|
|
|
local wezterm = require("wezterm")
|
|
|
|
|
|
|
|
|
|
local config = {
|
|
|
|
|
enable_tab_bar = false,
|
|
|
|
|
window_decorations = "RESIZE",
|
|
|
|
|
window_close_confirmation = "NeverPrompt",
|
2024-09-14 21:56:43 +05:30
|
|
|
font = wezterm.font("MesloLGS Nerd Font Mono"),
|
2024-09-14 18:55:44 +05:30
|
|
|
font_size = 14.0,
|
2024-09-26 16:29:57 +05:30
|
|
|
color_scheme = "Catppuccin Mocha",
|
2024-09-26 21:37:03 +05:30
|
|
|
-- color_scheme = "carbonfox",
|
2024-09-26 16:29:57 +05:30
|
|
|
window_background_opacity = 0.95,
|
2024-09-14 18:55:44 +05:30
|
|
|
window_padding = {
|
2024-09-26 16:29:57 +05:30
|
|
|
left = 0,
|
|
|
|
|
right = 0,
|
|
|
|
|
top = 0,
|
|
|
|
|
bottom = 0,
|
2024-09-14 18:55:44 +05:30
|
|
|
},
|
2024-09-16 03:19:04 +05:30
|
|
|
macos_window_background_blur = 10,
|
2024-09-14 18:55:44 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
-- uncomment this if not using with some wm
|
2024-10-18 01:23:59 +05:30
|
|
|
-- local mux = wezterm.mux
|
|
|
|
|
--
|
|
|
|
|
-- wezterm.on("gui-startup", function()
|
|
|
|
|
-- local _, _, window = mux.spawn_window({})
|
|
|
|
|
-- window:gui_window():maximize()
|
|
|
|
|
-- end)
|
2024-09-14 18:55:44 +05:30
|
|
|
|
|
|
|
|
return config
|