unix-config/.config/wezterm/wezterm.lua
2025-01-08 16:53:47 +11:00

18 lines
420 B
Lua

local wezterm = require 'wezterm'
local config = wezterm.config_builder()
config.font = wezterm.font('Monaco Nerd Font Mono', { weight = 'Medium' })
config.font_size = 12
config.freetype_load_target = 'Normal'
if wezterm.gui.get_appearance():find "Dark" then
config.color_scheme = 'Catppuccin Mocha'
config.colors = {
background = 'black'
}
else
config.color_scheme = 'Catppuccin Latte'
end
return config