Skip to content

Commit

Permalink
fix uv install
Browse files Browse the repository at this point in the history
  • Loading branch information
caseytomlin authored Dec 3, 2024
1 parent 8851a05 commit 2f34235
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .chezmoiscripts/run_once_install-uv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
if command -v uv >/dev/null 2>&1; then
echo "uv already installed"
else
curl -LsSf https://astral.sh/uv/install.sh | sudo sh
curl -LsSf https://astral.sh/uv/install.sh | env UV_INSTALL_DIR="$HOME/.local/bin" sh
fi
4 changes: 2 additions & 2 deletions dot_zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -114,12 +114,12 @@ DISABLE_AUTO_UPDATE=true
DISABLE_UPDATE_PROMPT=true
# source /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
eval "$(starship init zsh)"
# source <(fzf --zsh)

# uv aliases
alias va='source .venv/bin/activate'
alias vd='deactivate'

export PATH=$PATH:~/bin
export PATH=$PATH:$HOME/bin:$HOME/.local/bin

alias cm=chezmoi

Expand Down

0 comments on commit 2f34235

Please sign in to comment.