-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.ps1
More file actions
24 lines (17 loc) · 780 Bytes
/
setup.ps1
File metadata and controls
24 lines (17 loc) · 780 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
# Apps
scoop bucket add main
scoop install psutils git 7zip
scoop bucket add nerd-fonts;
scoop install FiraCode FiraCode-NF;
scoop bucket add extras;
scoop install alacritty starship qbittorrent telegram vscode imageglass vlc discord chromium;
scoop bucket add versions;
scoop install steam;
# Configs
## alacritty
New-Item -Path "$env:APPDATA/alacritty" -ItemType SymbolicLink -Value ".config/alacritty" -Force
## PoweSheel
$pwsheel = [environment]::getfolderpath("mydocuments") + "/WindowsPowerShell"
New-Item -Path $pwsheel -ItemType SymbolicLink -Value ".spec_config/WindowsPowerShell" -Force
## VSCode
New-Item -Path "$env:userprofile/scoop/apps/vscode/current/data/user-data/User/settings.json" -ItemType SymbolicLink -Value ".spec_config/vscode/settings.json" -Force