-
Notifications
You must be signed in to change notification settings - Fork 0
/
homebrew_setup.sh
executable file
·57 lines (44 loc) · 1.24 KB
/
homebrew_setup.sh
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/bin/bash
set -e
# home brew setup
if ! which brew > /dev/null; then
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
fi
brew install --cask \
alfred bettertouchtool \
aquaskk karabiner-elements \
google-chrome dropbox vlc \
trailer flux docker \
sketch amethyst kap \
brew install \
git gh tmux zsh vim \
coreutils cmigemo ispell \
direnv global ctags \
the_silver_searcher \
reattach-to-user-namespace \
yarn watchman \
go dep hugo \
awscli tfenv \
htop \
openssl mysql \
mutagen-io/mutagen/mutagen rsync packer \
ghq
# iOS
# brew install carthage
# Emacs
# TODO: create own taps
# brew install emacs --with-cocoa --with-ctags --with-imagemagick --with-librsvg --with-dbus --HEAD
# ln -sf `brew --prefix emacs`/Emacs.app /Applications/Emacs.app
brew install imagemagick gnutls pkgconfig autoconf texinfo
~/dotfiles/build_emacs
## makeinfo
brew install texinfo
## pdf-tools
brew install autoconf automake poppler zlib
## emacs-slack
brew install terminal-notifier
brew tap sanemat/font
brew install ricty --with-patch-in-place
cp -f /usr/local/opt/ricty/share/fonts/Ricty*.ttf ~/Library/Fonts/
fc-cache -vf
echo "Finished"