12 lines
273 B
Bash
Executable File
12 lines
273 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# install nonsudo packages
|
|
|
|
# https://rustup.rs/
|
|
curl --proto '=https' --tlsv1.2 -ssf https://sh.rustup.rs | sh -s -- -y
|
|
# shellcheck disable=SC1091
|
|
source "$HOME/.cargo/env"
|
|
|
|
# https://github.com/dandavison/delta#installation
|
|
cargo install git-delta
|