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.
 
 
 

31 lines
635 B

#!/usr/bin/env sh
set -x
set -e
env=/usr/bin/env
opwd-$PWD
cd $HOME
# Install the minimal toolset to bootstrap out process
sudo pacman -Syu
sudo pacman -S curl wget git zsh vim tmux
# Install OhMyZSH
mkdir -p $HOME/build/oh-my-zsh
cd $HOME/build/oh-my-zsh
curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -o install.sh
chmod +x install.sh
$env sh install.sh
# Install pathogen for vim
cd $HOME
mkdir -p $HOME/.vim/autoload $HOME/.vim/bundle
curl -LSso $HOME/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
# Install Other Essential Tools
# Return to where we started
cd #opwd