Created
May 30, 2024 16:47
-
-
Save zacharyneveu/721ca3fe2c0bf8d7e53d4919555287b1 to your computer and use it in GitHub Desktop.
Add nice things to Ubuntu terminal - useful for new docker containers, EC2 boxes, etc.
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 | |
# Oh my ZSH | |
sudo apt install -y zsh | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | |
# Ranger file manager | |
sudo apt install -y ranger | |
echo 'alias r=". ranger"' >> ~/.zshrc | |
# Neovim Editor | |
sudo apt install -y neovim | |
echo "export EDITOR=nvim" >> ~/.zshrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment