From 45a58cdac69dab1ca340d1f7607e881358109032 Mon Sep 17 00:00:00 2001 From: rootiest Date: Sat, 5 Oct 2024 22:15:08 -0400 Subject: [PATCH] fix: use default $TERM on windows - Set config.term = "xterm-256color" on windows - Other platforms continue to use "wezterm" --- config/platform.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/config/platform.lua b/config/platform.lua index 98b48a5..fa5767e 100644 --- a/config/platform.lua +++ b/config/platform.lua @@ -26,6 +26,7 @@ end -- Set OS-specific options if myos == "win" then opts.default_prog = { "pwsh.exe" } + opts.term = "xterm-256color" elseif myos == "mac" then opts.default_prog = { "zsh" } else