mirror of
https://github.com/starship/starship
synced 2024-11-02 04:08:02 +00:00
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.
This commit is contained in:
parent
36d1ec734c
commit
1b2ea77b1c
1 changed files with 5 additions and 0 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue