[FIX] bad pwsh args

This commit is contained in:
Daveanand Mannie
2025-03-30 18:37:51 -04:00
parent 62aaf398db
commit 02531b9774

View File

@@ -2,9 +2,9 @@
local wezterm = require("wezterm") local wezterm = require("wezterm")
local config = wezterm.config_builder() local config = wezterm.config_builder()
-- workspace dir default -- workspace dir default
config.default_cwd = "C:/Users/support/workspace" config.default_cwd = os.getenv("HOMEPATH") .. "/workspace"
-- default term prog can be changed with cli args -- default term prog can be changed with cli args
config.default_prog = { "C:/Program Files/PowerShell/7/pwsh.exe", "-nologo" } config.default_prog = { "pwsh" }
--styles --styles
config.harfbuzz_features = { "calt=0", "clig=0", "liga=0" } config.harfbuzz_features = { "calt=0", "clig=0", "liga=0" }