34 lines
1.1 KiB
Lua
34 lines
1.1 KiB
Lua
-- winiterm configuration
|
|
-- Location: %APPDATA%\winiterm\config.lua
|
|
--
|
|
-- This file is loaded at startup and hot-reloaded whenever it changes.
|
|
-- Return a plain table; unknown keys are ignored.
|
|
|
|
return {
|
|
-- Base font size in logical pixels.
|
|
-- The actual pixel size is scaled by the display's DPI factor.
|
|
font_size = 16.0,
|
|
|
|
-- Active colour scheme (case-insensitive).
|
|
-- Built-in choices: monokai, nord, dracula, one_dark, solarized_dark, gruvbox
|
|
color_scheme = "monokai",
|
|
|
|
-- Shell executable to spawn in each pane.
|
|
-- nil = auto-detect: tries pwsh.exe → powershell.exe → cmd.exe
|
|
shell = nil,
|
|
|
|
-- Number of scrollback lines to retain per pane.
|
|
scrollback_lines = 10000,
|
|
|
|
-- Attempt to enable the Windows 11 Mica system backdrop.
|
|
-- Requires Windows 11 22H2 or later; silently ignored on older versions.
|
|
enable_mica = false,
|
|
|
|
-- Show a system-tray icon so winiterm persists when all windows are closed.
|
|
tray_icon = false,
|
|
|
|
-- Window opacity in [0.0, 1.0].
|
|
-- 1.0 = fully opaque (default). Values below 1.0 require a compositor.
|
|
opacity = 1.0,
|
|
}
|