Last active
June 21, 2022 18:49
-
-
Save Schm1tz1/72a1506b0d176bbb7ffc04d6f227af53 to your computer and use it in GitHub Desktop.
Linux Packages and Tools Script for setting up a working machine
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# package update and favorites | |
sudo apt update && sudo apt dist-upgrade -y | |
sudo apt install htop jq tmux silversearcher-ag tree iotop vim git openssl | |
# install oh my bash | |
bash -c "$(curl -fsSL https://raw.githubusercontent.com/ohmybash/oh-my-bash/master/tools/install.sh)" | |
# awesome vim config | |
git clone --depth=1 https://github.com/amix/vimrc.git ~/.vim_runtime | |
sh ~/.vim_runtime/install_awesome_vimrc.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment