feat: added env vars to zsh config

This commit is contained in:
Kulvir Singh
2025-03-09 00:59:02 +05:30
parent f85a079b90
commit 1e4dcc5546
4 changed files with 8 additions and 36 deletions

View File

@@ -1,29 +0,0 @@
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