1
Fork 0
config/Install.ps1

18 lines
225 B
PowerShell

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