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

Commit 2bd1654

Browse files
mc-slavaJanJoris
authored andcommittedNov 10, 2017
Add additional information on how to enable module
1 parent 5df7c5b commit 2bd1654

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
 

‎README.md

+17
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,23 @@ Install-Module posh-git -Scope CurrentUser
5858
Install-Module oh-my-posh -Scope CurrentUser
5959
```
6060

61+
Enable engine in your PowerShell profile:
62+
63+
```bash
64+
if (!(Test-Path -Path $PROFILE )) { New-Item -Type File -Path $PROFILE -Force }
65+
notepad $PROFILE
66+
```
67+
68+
Append following lines to your PowerShell profile:
69+
70+
```bash
71+
Import-Module posh-git
72+
Import-Module oh-my-posh
73+
Set-Theme paradox
74+
```
75+
76+
Last command sets theme for the console. Check available themes list below.
77+
6178
## Configuration
6279
6380
List the current configuration:

0 commit comments

Comments
 (0)
This repository has been archived.