fix: use default $TERM on windows

- Set config.term = "xterm-256color" on windows
- Other platforms continue to use "wezterm"
This commit is contained in:
2024-10-05 22:15:08 -04:00
parent 92c3f72dac
commit 45a58cdac6
+1
View File
@@ -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