Skip to content

Commit fba88f8

Browse files
authored
Move PSCX higher in requirements #5
1 parent 3b38bba commit fba88f8

File tree

1 file changed

+20
-18
lines changed

1 file changed

+20
-18
lines changed

README.md

+20-18
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,26 @@ This is what I install on any Windows 10 box.
2727

2828
Powershell 6.2 includes PSReadline, which provides history with up/down arrows, ctrl left and right to move between words, and other useful keybindings you'll know from bash.
2929

30+
### Trust PSGallery
31+
32+
To allow you to install items without further prompts:
33+
34+
Set-PSRepository -name PSGallery -InstallationPolicy Trusted
35+
36+
### For `less`, `Add-PAthVariable` and a bunch of other useful commands that should be there out of the box
37+
38+
Get the [Powershell Community Extensions](https://github.com/Pscx/Pscx). Run:
39+
40+
Install-Module Pscx -Scope CurrentUser
41+
42+
AllowClobber is needed due to [this bug](https://github.com/Pscx/Pscx/issues/15)
43+
44+
### For 'Remove-ItemSafely' - ie, trashing files from the command line
45+
46+
Run:
47+
48+
Install-Module -Name Recycle -Scope CurrentUser
49+
3050
### For a decent, tabbed terminal
3151

3252
#### Tabbed terminals that work now
@@ -107,25 +127,7 @@ These have the 'everything at once' UI design of older Windows operating systems
107127
- [**ConEmu**](https://conemu.github.io/) works, but has some contrast issues which make it hard to see the open tab, and is hampered by its author's desire for Windows XP support.
108128
- [**ConsoleZ**](https://github.com/cbucher/console) is an updated version of the now-unmaintained Console2.
109129

110-
### Trust PSGallery
111-
112-
To allow you to install items without further prompts:
113-
114-
Set-PSRepository -name PSGallery -InstallationPolicy Trusted
115-
116-
### For 'less' and a bunch of other useful stuff
117-
118-
Get the [Powershell Community Extensions](https://github.com/Pscx/Pscx). Run:
119-
120-
Install-Module Pscx -Scope CurrentUser
121-
122-
AllowClobber is needed due to [this bug](https://github.com/Pscx/Pscx/issues/15)
123130

124-
### For 'Remove-ItemSafely' - ie, trashing files from the command line
125-
126-
Run:
127-
128-
Install-Module -Name Recycle -Scope CurrentUser
129131

130132
### To pick a color scheme / theme
131133

0 commit comments

Comments
 (0)