Last active
January 11, 2023 10:44
-
-
Save jaymody/762417819fa017d75ff0870aa9ff0f2b to your computer and use it in GitHub Desktop.
Setting up https://github.com/jaymody/dotfiles in a ubuntu/debian 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
# usage: curl -s https://gist.githubusercontent.com/jaymody/762417819fa017d75ff0870aa9ff0f2b/raw/setup.sh | sudo bash | |
# update and upgrade | |
apt update -y && apt upgrade -y | |
# packages | |
apt install -y \ | |
ack \ | |
coreutils \ | |
curl \ | |
direnv \ | |
git \ | |
htop \ | |
net-tools \ | |
sudo \ | |
tmux \ | |
tree \ | |
unzip \ | |
vim \ | |
wget \ | |
zip \ | |
zsh | |
# install github.com/jaymody/dotfiles | |
# printf "B" triggers the backup all option during the install to backup existing dotfiles | |
# RUNZSH=no removes the interactive oh-my-zsh install | |
git clone https://github.com/jaymody/dotfiles.git ~/.dotfiles && \ | |
cd ~/.dotfiles && \ | |
printf "B" | bash link $HOME/.dotfiles/dotfiles && \ | |
RUNZSH=no bash zsh/setup.sh && \ | |
chsh -s $(which zsh) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment