14 lines
237 B
Bash
Raw Normal View History

2018-03-01 00:47:14 +01:00
#!/bin/sh
type pacman > /dev/null 2>&1 || { echo >&2 "I require pacman but it's not installed. Aborting."; exit 1; }
echo "Installing packages..."
pacman -S git
pacman -S tmux
pacman -S zsh
pacman -S powerline
pacman -S nvim
exit 0