-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
37 lines (31 loc) · 1.51 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
set -e
sudo apt update && sudo apt install -y wget curl python3-pip git
curl https://raw.githubusercontent.com/GitAlias/gitalias/main/gitalias.txt -o gitalias.txt
git config --global include.path gitalias.txt
git config --global user.email "[email protected]"
sudo apt update
sudo apt install ncdu -y # disk usage
sudo apt install autojump -y # memory for change directory
sudo apt install pipx
pipx install tldr && pipx install rich-cli && pipx install thefuck
pipx install pipenv && pipx install pip-run && pipx install pip-tools && \
pipx install pip-autoremove && pipx install "pypi-command-line[speedups]"
pipx install jc # transform all cmd output to json
pipx install doitlive && npm install -g terminalizer # record terminal
pipx install datasette && pipx install csv-to-sqlite
pipx install saws
pipx runpip saws install aws
cd /tmp &&\
wget https://github.com/marcosnils/bin/releases/download/v0.17.0/bin_0.17.0_Linux_x86_64 &&\
mv bin_0.17.0_Linux_x86_64 bin &&\
chmod u+x bin &&\
sudo mv bin /usr/local/bin
echo '{
"default_path": "/usr/local/bin",
"bins": {}
}' | sudo tee /root/.config/bin/config.json > /dev/null
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
bash <(curl https://raw.githubusercontent.com/ellie/atuin/main/install.sh)
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.10.0
curl https://raw.githubusercontent.com/billmetangmo/cli-tools/main/dotfiles/bashrc --output ~/.bashrc
git clone https://github.com/billmetangmo/cli-tools