mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
69 lines
1.9 KiB
Lua
69 lines
1.9 KiB
Lua
local wezterm = require("wezterm")
|
|
local os_type = require("utils").detected_os
|
|
local color = require("color")
|
|
|
|
-- https://wezterm.org/config/lua/wezterm.gui/get_appearance.html
|
|
-- wezterm.gui is not available to the mux server, so take care to
|
|
-- do something reasonable when this config is evaluated by the mux
|
|
local function get_appearance()
|
|
if wezterm.gui then
|
|
return wezterm.gui.get_appearance()
|
|
end
|
|
return "Dark"
|
|
end
|
|
|
|
local function scheme_for_appearance(appearance)
|
|
if appearance:find("Dark") then
|
|
print("Dark")
|
|
return "Catppuccin Mocha"
|
|
else
|
|
print("Light")
|
|
return "rose-pine-dawn"
|
|
end
|
|
end
|
|
|
|
return function(config)
|
|
config.max_fps = 120
|
|
config.font = wezterm.font({
|
|
family = "Maple Mono NF CN",
|
|
})
|
|
config.color_scheme = scheme_for_appearance(get_appearance())
|
|
config.font_size = 12.0
|
|
config.front_end = "WebGpu"
|
|
config.webgpu_power_preference = "HighPerformance"
|
|
if os_type.is_win then
|
|
config.window_background_opacity = 0.7 -- Not working under WebGpu
|
|
config.win32_system_backdrop = "Mica"
|
|
end
|
|
config.window_padding = {
|
|
left = 0,
|
|
right = 0,
|
|
top = 0,
|
|
bottom = 0,
|
|
}
|
|
-- Cursor
|
|
config.animation_fps = 120
|
|
if not os_type.is_win then -- This is sooooooo slow on Windows
|
|
config.cursor_blink_ease_in = "EaseOut"
|
|
config.cursor_blink_ease_out = "EaseOut"
|
|
config.default_cursor_style = "BlinkingBlock"
|
|
config.cursor_blink_rate = 650
|
|
end
|
|
-- Visual Bell
|
|
config.visual_bell = {
|
|
fade_in_function = "EaseIn",
|
|
fade_in_duration_ms = 250,
|
|
fade_out_function = "EaseOut",
|
|
fade_out_duration_ms = 250,
|
|
target = "CursorColor",
|
|
}
|
|
-- Command Palette
|
|
config.window_frame = {
|
|
font = wezterm.font("PingFang SC"),
|
|
}
|
|
config.window_decorations = "RESIZE"
|
|
config.command_palette_fg_color = color.lavender
|
|
config.command_palette_bg_color = color.base
|
|
-- UnixLong / Emacs / AppleSymbols / WindowsLong / WindowsSymbols
|
|
config.ui_key_cap_rendering = "AppleSymbols"
|
|
end
|