-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBrewfile
47 lines (32 loc) · 892 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
47
# List of packages that will be installed with `brew bundle`
# https://thoughtbot.com/blog/brewfile-a-gemfile-but-for-homebrew
# parse json with the command line
brew 'jq'
# navigate JSON with command line
brew 'fx'
# view folders and files in a tree structure
brew 'tree'
# pass in a url and download the file from that url
brew 'wget'
# an interactive terminal tool for showing disk usage
brew 'ncdu'
# better than cat
brew 'bat'
# convert almost any media file to any other media file type
brew 'ffmpeg'
# a better ssh
brew 'mosh'
# better than find
brew 'fd'
# render markdown in terminal
brew 'glow'
# the official github cli
brew 'gh'
# internet speed test from the command line
brew 'speedtest-cli'
# node version manager. Use this to install node.js
brew 'nvm'
# dependency for pywal
brew 'imagemagick'
# A better git diff tool (eg. delta file1 file2)
brew 'git-delta'