Skip to content

Commit 117f1cd

Browse files
committed
uv install
1 parent 1872a6e commit 117f1cd

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

install_utilities.sh

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,27 @@ curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip
1313
unzip awscliv2.zip && \
1414
./aws/install
1515

16-
# tidy up
16+
# tidy up aws install
1717
rm -rf aws/
1818
rm -r awscliv2.zip
1919

2020
# minio client for S3 use
2121
curl https://dl.min.io/client/mc/release/linux-amd64/mc -o /usr/local/bin/mc && chmod +x /usr/local/bin/mc
2222

2323
# optional git config
24-
# git config --system pull.rebase false && \
24+
git config --system pull.rebase true && \
2525
# git config --system credential.credentialStore cache && \
2626
# git config --system credential.cacheOptions "--timeout 30000" && \
27-
# echo '"\e[5~": history-search-backward' >> /etc/inputrc && \
28-
# echo '"\e[6~": history-search-forward' >> /etc/inputrc
27+
28+
git config --system user.name "Default User"
29+
git config --system user.email "[email protected]"
30+
31+
# uv install
32+
curl -LsSf https://astral.sh/uv/install.sh | UV_INSTALL_DIR="/usr/local/bin" sh
33+
34+
## terminal preferences
35+
echo '"\e[5~": history-search-backward' >> /etc/inputrc && \
36+
echo '"\e[6~": history-search-forward' >> /etc/inputrc
2937

3038
# Optional credential manager for RStudio/Jupyter users. -- code-server extension provides easier alternative.
3139
# wget https://github.com/git-ecosystem/git-credential-manager/releases/download/v2.6.0/gcm-linux_amd64.2.6.0.deb && dpkg -i gcm-*.deb && rm gcm-*.deb

0 commit comments

Comments
 (0)