You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
479 B

  1. #!/usr/bin/env sh
  2. set -x
  3. set -e
  4. env=/usr/bin/env
  5. opwd-$PWD
  6. cd $HOME
  7. # Install the minimal toolset to bootstrap out process
  8. sudo pacman -Syu
  9. sudo pacman -S curl wget git zsh vim tmux
  10. # Install OhMyZSH
  11. mkdir -p $HOME/build/oh-my-zsh
  12. cd $HOME/build/oh-my-zsh
  13. curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -o install.sh
  14. chmod +x install.sh
  15. $env sh install.sh
  16. # Install Other Essential Tools
  17. # Return to where we started
  18. cd #opwd