Created
May 23, 2024 20:13
-
-
Save matdave/b8859240c827889f6d7291e1364cc350 to your computer and use it in GitHub Desktop.
Powershell Profile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Alternative for `nvm use` on nvmrc | |
Function nvm-use | |
{ | |
if (Test-Path -Path .\.nvmrc -PathType Leaf) { | |
$version = Get-Content .\.nvmrc -Raw | |
nvm use $version.Trim().ToLower() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment