Skip to content

Commit

Permalink
Some fixes for Git Bash
Browse files Browse the repository at this point in the history
  • Loading branch information
jawilson committed Oct 3, 2023
1 parent 113ef79 commit 00315ee
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
Empty file added config/git/git-prompt.sh
Empty file.
2 changes: 1 addition & 1 deletion oh-my-zsh/dotfiles-custom/work.zsh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
if [ "$(uname -s)" != "Darwin" ]; then
if [ "$(uname -s)" = "Linux" ]; then
export MEDIASOUP_ANNOUNCED_IP=$(hostname -I|cut -d' ' -f1)
fi

Expand Down
10 changes: 6 additions & 4 deletions zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,13 @@ else
fi

# fnm
export PATH=$HOME/.fnm:$PATH
if (( ! $+commands[fnm] )); then
curl -fsSL https://fnm.vercel.app/install | bash -s -- --skip-shell --install-dir "$HOME/.fnm"
if [[ "$MSYSTEM" != "MSYS" ]]; then
export PATH=$HOME/.fnm:$PATH
if (( ! $+commands[fnm] )); then
curl -fsSL https://fnm.vercel.app/install | bash -s -- --skip-shell --install-dir "$HOME/.fnm"
fi
eval "`fnm env --use-on-cd`"
fi
eval "`fnm env --use-on-cd`"

# nvm (for VS Code)
export NVM_DIR="$HOME/.nvm"
Expand Down

0 comments on commit 00315ee

Please sign in to comment.