forked from herblover/macos_bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBrewfile
More file actions
70 lines (58 loc) · 1.08 KB
/
Brewfile
File metadata and controls
70 lines (58 loc) · 1.08 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# for using bundle / Brewfile
tap "homebrew/bundle"
# for dupes (ex: grep)
tap "homebrew/dupes"
# enable cask
tap "caskroom/cask"
# enable alternative versions
tap "caskroom/versions"
# enable cask fonts
tap "caskroom/fonts"
# zsh shell
brew "zsh"
# GNU utils - note: I don't want to override system binaries, so just skip with-default-names option.
brew "gnu-sed"
brew "gnu-tar"
brew "gnutls"
brew "grep"
brew "coreutils"
brew "binutils"
brew "diffutils"
# tmux
brew "tmux"
# system utils
brew "gzip"
brew "watch"
brew "wget"
brew "nmap"
brew "htop"
brew "gpg"
brew "git"
# Vim
brew "vim"
# Hugo for blog
brew "hugo"
# casks for macos utility
cask "iterm2"
cask "google-chrome"
cask "spectacle"
# Development Tools
cask "github-desktop"
cask "visual-studio-code"
cask "firefoxdeveloperedition"
cask "java"
# Jetbrains Toolbox
cask "jetbrains-toolbox"
# fonts
cask "font-nanumgothic"
cask "font-nanumgothiccoding"
cask "font-d2coding"
cask "font-noto-sans-cjk"
cask "font-awesome-terminal-fonts"
# Ruby
brew "rbenv"
brew "ruby-build"
# Python
brew "pyenv"
brew "pyenv-virtualenv"
brew "pipenv"