nix-config/modules/wezterm/config/appearance.lua
2025-09-18 13:11:54 +02:00

17 lines
533 B
Lua

local wezterm = require("wezterm")
local helpers = require("helpers")
local M = {}
function M.apply_to_config(config)
config.color_scheme = "Modus-Vivendi-Tinted"
config.font = wezterm.font("VictorMono Nerd Font", { weight = "DemiBold", stretch = "Normal", style = "Normal" })
config.font_size = 18.5
config.window_decorations = "RESIZE"
config.window_padding = helpers.get_padding(20, 15)
config.window_background_opacity = 0.97
config.macos_window_background_blur = 30
config.command_palette_font_size = 19
end
return M