From 1b2ea77b1c652e62ef89e2141b393f9db1f8da21 Mon Sep 17 00:00:00 2001 From: Matt Kadlubowski Date: Thu, 21 May 2020 17:22:45 +0100 Subject: [PATCH] docs: Updated config with a tip for PowerShell user (#1216) Added a tip with information about how a PowerShell user can override default starship.toml file location path in his PowerShell profile. --- docs/config/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/config/README.md b/docs/config/README.md index 664ec229a..75ffad41a 100644 --- a/docs/config/README.md +++ b/docs/config/README.md @@ -33,6 +33,11 @@ You can change default `starship.toml` file location with `STARSHIP_CONFIG` envi export STARSHIP_CONFIG=~/.starship ``` +Equivalently in PowerShell (Windows) would be adding this line to your `$PROFILE`: +```ps1 +$ENV:STARSHIP_CONFIG = "$HOME\.starship" +``` + ### Terminology **Module**: A component in the prompt giving information based on contextual information from your OS. For example, the "nodejs" module shows the version of NodeJS that is currently installed on your computer, if your current directory is a NodeJS project.