18 lines
225 B
PowerShell
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
|