-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBrewfile
46 lines (40 loc) · 804 Bytes
/
Brewfile
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
# Taps
tap 'homebrew/cask'
tap 'homebrew/cask-fonts'
tap 'homebrew/cask-versions'
tap 'homebrew/bundle'
# Install GNU core utilities (those that come with macOS are outdated)
brew 'coreutils'
# Install GNU `find`, `locate`, `updatedb`, and `xargs`, g-prefixed
brew 'findutils'
# Install Binaries
brew 'bash'
brew 'zsh'
brew 'zsh-completions'
brew 'git'
brew 'tree'
brew 'node'
brew 'trash'
brew 'wget'
brew 'vim'
brew 'neovim'
brew 'awk'
brew 'ack'
brew 'tmux'
brew 'the_silver_searcher'
brew 'fzf'
brew 'lazydocker'
brew 'python'
brew 'ripgrep'
# Development
brew 'php'
brew 'imagemagick'
# Editors
cask 'sublime-text'
# Fonts
cask 'font-source-code-pro-for-powerline'
cask 'font-source-code-pro'
cask 'font-source-sans-pro'
cask 'font-source-serif-pro'
cask 'font-cascadia'
cask 'font-fira-code'