Added pastify and powershell debug

This commit is contained in:
2025-11-11 10:33:26 +01:00
parent 8c0f3ec5b4
commit 47ffc1a523
8 changed files with 370 additions and 7 deletions

View File

@@ -18,7 +18,8 @@ $packages = @(
"zig.zig"
)
foreach ($package in $packages) {
foreach ($package in $packages)
{
winget install $package
}
@@ -34,11 +35,13 @@ npm install # mostly nvim deps
Start-Process pwsh -Verb RunAs -ArgumentList "-Command", "choco install make unzip ripgrep"
## Nvim requirements from pip
python -m pip install debugpy
python -m pip install debugpy neovim pillow
## Git posh
Install-Module posh-git -Scope CurrentUser -Force
Exit
# extras, make flag for these
@@ -67,7 +70,8 @@ $packages = @(
)
# Iterate through each package and install it
foreach ($package in $packages) {
foreach ($package in $packages)
{
winget install $package
}