Skip to content

Instantly share code, notes, and snippets.

@zacharyneveu
Created May 30, 2024 16:47
Show Gist options
  • Save zacharyneveu/721ca3fe2c0bf8d7e53d4919555287b1 to your computer and use it in GitHub Desktop.
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.
#!/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