We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4169132 commit 14e9b93Copy full SHA for 14e9b93
1 file changed
profile/profile.ps1
@@ -103,10 +103,12 @@ function Init-Environment {
103
Write-Verbose "初始化zoxide目录跳转工具"
104
Invoke-Expression (& { (zoxide init powershell | Out-String) })
105
}
106
- fnm = {
107
- Write-Verbose "初始化fnm Node.js版本管理器"
108
- fnm env --use-on-cd | Out-String | Invoke-Expression
109
- }
+ # 在windows上使用比nvm麻烦很多,,所以不用了
+ # 这个环境变量还需要在husky的git bash,npm使用的cmd里配置
+ # fnm = {
+ # Write-Verbose "初始化fnm Node.js版本管理器"
110
+ # fnm env --use-on-cd | Out-String | Invoke-Expression
111
+ # }
112
113
114
foreach ($tool in $tools.GetEnumerator()) {
0 commit comments