This commit is contained in:
reonokiy 2025-05-03 12:44:35 +08:00
parent d01cbbb5a9
commit c209f8d2be
Signed by: reonokiy
SSH key fingerprint: SHA256:2VjKpUxMIe0QYY3OVnOMuPiB0X5pvrIpJ+UiyFhxtq0

View file

@ -3,6 +3,11 @@ if (Get-Command starship -ErrorAction SilentlyContinue) {
Invoke-Expression (&starship init powershell)
}
# fnm
if (Get-Command fnm -ErrorAction SilentlyContinue) {
fnm env --use-on-cd --shell powershell | Out-String | Invoke-Expression
}
# micromamba
if (Get-Command micromamba -ErrorAction SilentlyContinue) {
$Env:MAMBA_ROOT_PREFIX = "{{ .chezmoi.homeDir }}/.micromamba"