#!/bin/sh set -eu common='gdb git gnupg htop the_silver_searcher tree' macos() { homebrew=https://raw.githubusercontent.com/Homebrew/install/master/install xcode-select --install || true [ ! -f /usr/local/bin/brew ] && ruby -e "`curl -fsSL $homebrew`" brew install $common brew install neovim/neovim/neovim openssh } freebsd() { pkg install $common pkg install curl neovim sudo zsh } arch() { pacman -Sy pacman -S --needed base-devel pacman -S --needed $common pacman -S --needed neovim openssh zsh } [ "`uname`" = 'Darwin' ] && macos && exit [ -f /usr/local/sbin/pkg ] && freebsd && exit [ -f /usr/bin/pacman ] && arch && exit