-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPSRefresh.psd1
More file actions
26 lines (26 loc) · 750 Bytes
/
PSRefresh.psd1
File metadata and controls
26 lines (26 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#PSRefresh.psd1
#PSModules should be new modules to install
#Scope can be 'CurrentUser' or 'AllUsers'
#vscExtensions are Visual Studio Code extensions to install
@{
wingetPackages = @(
'Microsoft.VisualStudioCode',
'Git.Git',
'GitHub.cli',
'Microsoft.WindowsTerminal',
'github.githubdesktop',
'Microsoft.PowerShell'
)
PSModules = @("PSScriptTools","PSProjectStatus","PSStyle","Platyps")
vscExtensions = @(
'github.copilot',
'github.copilot-chat',
'github.remotehub',
'ms-vscode.powershell',
'davidanson.vscode-markdownlint',
'inu1255.easy-snippet',
'gruntfuggly.todo-tree'
)
Scope = 'AllUsers'
Version = '1.2.0'
}