summary refs log tree commit diff
path: root/install.sh
blob: 8b9df7c8e914caecc96eb9fd49ee4ba1a77c0c8f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh
set -eu

common=gdb git gnupg htop the_silver_searcher tmux 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
  brew cask install iterm2
}

freebsd() {
  pkg install $common
  pkg install curl neovim sudo zsh
}

arch() {
  pacman -Sy --needed base-devel
  pacman -Sy --needed $common
  pacman -Sy --needed neovim openssh zsh
}

[ "`uname`" = 'Darwin' ] && exec macos
[ -f /usr/local/sbin/pkg ] && exec freebsd
[ -f /usr/bin/pacman ] && exec arch