1
Fork 0
config/Install.ps1

18 lines
225 B
PowerShell
Raw Permalink Normal View History

2023-05-16 13:48:00 +02:00
function Install-Config {
param (
[string]$ConfigPath
)
Push-Location $ConfigPath
& ".\.Install.ps1"
Pop-Location
}
Push-Location src
Install-Config Git
Install-Config Neovim
Install-Config PowerShell
Pop-Location