From 1ad74b08f2aba8400acb6cab2702d4aaf9359bc9 Mon Sep 17 00:00:00 2001 From: Hawtin Zeng <73981739+HawtinZeng@users.noreply.github.com> Date: Fri, 22 Dec 2023 10:51:10 +0800 Subject: [PATCH] docs: set custom config file path in PowerShell (#196) Co-authored-by: zenghawtin Co-authored-by: Anthony Fu --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 6ae14d73..284f1076 100644 --- a/README.md +++ b/README.md @@ -227,6 +227,13 @@ globalAgent=npm export NI_CONFIG_FILE="$HOME/.config/ni/nirc" ``` +```ps +# for Windows + +# custom configuration file path in PowerShell accessible within the `$profile` path +$Env:NI_CONFIG_FILE = 'C:\to\your\config\location' +``` +
### How?