Compare commits

..

No commits in common. "88450efd47d38315c2310bd0b4e9bdf02f755240" and "7b6d6d32eb694487981050997dd79770b208079e" have entirely different histories.

4 changed files with 4 additions and 21 deletions

View file

@ -1,17 +0,0 @@
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

View file

@ -1,7 +1,7 @@
#!/usr/bin/env fish
function install -a config_path
pushd $config_path
function install -a path
pushd $path
./.install.fish
popd
end

View file

@ -1,2 +1,2 @@
New-Item -ItemType "directory" -Path "$HOME\AppData\Local\nvim" -Force
New-Item -ItemType "directory" -Path "$HOME\AppData\Local\nvim"
Copy-Item ".\init.vim" "$HOME\AppData\Local\nvim\"

View file

@ -1,2 +1,2 @@
New-Item -ItemType "directory" -Path "$HOME\Documents\PowerShell" -Force
New-Item -ItemType "directory" -Path "$HOME\Documents\PowerShell"
Copy-Item ".\profile.ps1" "$HOME\Documents\PowerShell\"