Skip to content
This repository has been archived by the owner on Feb 16, 2021. It is now read-only.

Commit

Permalink
Fix theme name and installation steps in README
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikolay Kondratyev authored and JanDeDobbeleer committed Jul 30, 2018
1 parent 5080d38 commit cf28303
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,11 @@ Install-Module posh-git -Scope CurrentUser
Install-Module oh-my-posh -Scope CurrentUser
```

Enable the engine in your PowerShell profile:
In case you're running this on PS Core, make sure to also install version 2.0.0-beta1 of `PSReadLine`

Install-Module -Name PSReadLine -AllowPrerelease -Scope CurrentUser -Force

To enable the engine edit your PowerShell profile:

```bash
if (!(Test-Path -Path $PROFILE )) { New-Item -Type File -Path $PROFILE -Force }
Expand All @@ -71,15 +75,11 @@ Append the following lines to your PowerShell profile:
```bash
Import-Module posh-git
Import-Module oh-my-posh
Set-Theme paradox
Set-Theme Paradox
```
The last command sets the theme for the console. Check the available themes list below.
In case you're running this on PS Core, make sure to also install version 2.0.0-beta1 of `PSReadLine`
Install-Module -Name PSReadLine -AllowPrerelease -Scope CurrentUser -Force
## Configuration
List the current configuration:
Expand Down

0 comments on commit cf28303

Please sign in to comment.