-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathBrewfile
83 lines (61 loc) · 1.42 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# vim: syntax=ruby filetype=ruby
tap "thoughtbot/formulae"
# rcm: dotfile management
brew "rcm"
# parity: useful tools for Heroku development/staging/production
brew "parity"
# Lets us do `brew services restart postgres`, etc
tap "homebrew/services"
tap "gabebw/formulae"
# sed for HTML: https://github.com/gabebw/candle
brew "candle"
brew "bat"
brew "chrome-cli"
brew "fd"
brew "fzf"
brew "git"
brew "heroku"
brew "hexyl"
brew "gh"
brew "pgrep"
brew "ripgrep"
brew "tag"
brew "tree"
brew "vim"
brew "git-delta"
# sed for json: https://robots.thoughtbot.com/jq-is-sed-for-json
brew "jq"
# sed for xml: http://xmlstar.sourceforge.net/doc/UG/ch04.html#idm47989546279904
brew "xmlstarlet"
# Slice and dice your CSV
brew "xsv"
# macOS ships with version 2.8. Get version 3.4+ so `diff --color` works.
brew "diffutils"
# so :Rtags works
brew "ctags"
brew "ffmpeg"
# I love `sponge` so much.
brew "moreutils"
# rbenv version manager for Ruby
brew "rbenv"
brew "rbenv-default-gems"
# Version manager for Node
brew "fnm"
# Simple graphs with `bin/line_graph`
brew "gnuplot"
# Personal manpages, written in Markdown
brew "um"
# Rust
# Don't install `rust` - let rustup handle it
brew "rustup-init"
# watch COMMAND runs COMMAND on a regular cadence
brew "watch"
# Prompt: https://starship.rs
brew "starship"
# Git Large File Support
brew "git-lfs"
# Neovim, so I can use Vim in VS Code
brew "neovim"
brew "fish"
# SDUI
brew "openjdk@17"