Bake the actual Windows live settings in as repo defaults

Synced font, font_size, and ssh_domains to match the user's real
.wezterm.lua (compared with CRLF stripped, since the live file uses
Windows line endings): Korean font is "Noto Sans KR" (not the CJK
variant), font_size is 9, and the du5t SSH domain (172.30.1.41:228,
user gm, multiplexing = "None") is now a real default entry instead of
a commented-out example.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-18 02:21:55 +09:00
parent 0d0095a499
commit 87047f13e5

View File

@@ -6,10 +6,10 @@ local act = wezterm.action
-- 폰트 & 테마 -- 폰트 & 테마
-- ============================================================ -- ============================================================
config.font = wezterm.font_with_fallback({ config.font = wezterm.font_with_fallback({
"JetBrains Mono", -- 원하는 폰트로 교체 (Nerd Font 계열 추천: JetBrainsMono Nerd Font 등) "JetBrains Mono", -- 영어/기본 폰트
"Noto Sans Mono CJK KR", -- 한글 fallback "Noto Sans KR", -- 한글 폰트
}) })
config.font_size = 13.0 config.font_size = 9
config.line_height = 1.1 config.line_height = 1.1
config.color_scheme = "Catppuccin Mocha" -- wezterm show-config 나 https://wezterm.org/colorschemes/ 에서 이름 확인 config.color_scheme = "Catppuccin Mocha" -- wezterm show-config 나 https://wezterm.org/colorschemes/ 에서 이름 확인
@@ -139,11 +139,12 @@ end)
-- SSH 도메인: 자주 접속하는 원격 서버를 wezterm이 네이티브로 관리 -- SSH 도메인: 자주 접속하는 원격 서버를 wezterm이 네이티브로 관리
-- 실제 서버 정보가 준비되면 아래 예시를 복사해서 채우세요. -- 실제 서버 정보가 준비되면 아래 예시를 복사해서 채우세요.
config.ssh_domains = { config.ssh_domains = {
-- { {
-- name = "myserver", name = "du5t",
-- remote_address = "myserver.example.com", remote_address = "172.30.1.41:228",
-- username = "youruser", username = "gm",
-- }, multiplexing = "None",
},
} }
-- Unix domain (mux server): wezterm을 서버로 띄워두면 터미널 껐다 켜도 세션 유지 -- Unix domain (mux server): wezterm을 서버로 띄워두면 터미널 껐다 켜도 세션 유지