-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
172 lines (172 loc) · 3.8 KB
/
config.js
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
module.exports = {
brew: [
'coreutils',
'moreutils',
'findutils',
'gnu-sed --with-default-names', // Install GNU `sed`, overwriting the built-in `sed` so we can do "sed -i 's/foo/bar/' file" instead of "sed -i '' 's/foo/bar/' file"
'gnupg',
'vim --with-override-system-vi', // better, more recent vim
'grep --with-default-names', // upgrade grep so we can get things like inverted match (-v)
'openssh',
'git',
'git-lfs',
'ack', // http://conqueringthecommandline.com/book/ack_ag
'ag',
'awscli',
'bat', // alternative to `cat`: https://github.com/sharkdp/bat
'bundle', // Bundler for non-Ruby dependencies from Homebrew.
'dos2unix',
'findutils', // Install GNU `find`, `locate`, `updatedb`, and `xargs`, `g`-prefixed
'fzf', // Command-line fuzzy finder
'gawk',
'gh',
'git-standup',
'goku',
'homebrew/dupes/grep', // better, more recent grep
'homebrew/dupes/screen', // better/more recent version of screen
'httpie', // https://github.com/jkbrzt/httpie
'jq', // jq is a sort of JSON grep
'mas', // Mac App Store CLI: https://github.com/mas-cli/mas
'mongodb',
'moreutils', // Install some other useful utilities like `sponge`
'nmap',
'openconnect',
'postgresql',
'python',
'python@2',
'python@3',
'rbenv',
'readline', // ensure gawk gets good readline
'reattach-to-user-namespace',
'ruby-build',
'poppler', // for "pdfunite" and "pdfseparate" tools
'sqlite',
'todo-txt',
'tree',
'tmux',
'ttyrec',
'watch',
'wget --enable-iri', // Install wget with IRI support
'yarn',
],
cask: [
'1password-cli',
'1password',
'affinity-designer',
'affinity-photo',
'airmail',
'alfred',
'altair-graphql-client',
'audio-hijack',
'autojump',
'bartender',
'cakebrew',
'camo-studio',
'cleanmymac',
'cleanshot',
'contexts',
'devonthink',
'diffmerge',
'discord',
'docker',
'elgato-stream-deck',
'farrago',
'fig',
'figma',
'firefox',
'forklift',
'google-chrome',
'gpg-suite',
'grammarly',
'hammerspoon',
'hazel',
'iterm2',
'karabiner-elements',
'keyboard-maestro',
'little-snitch',
'microsoft-edge',
'mindnode-pro',
'mockoon',
'monitorcontrol',
'ngrok',
'nordvpn',
'notion',
'obs',
'obsidian',
'postman',
'raindropio',
'rectangle',
'renamer',
'screenflow',
'slack',
'steam',
'switchhosts',
'tableplus',
'teamviewer',
'the-unarchiver',
'things',
'tower',
'twitch',
'unity',
'virtualbox',
'visual-studio-code',
'vlc',
'whatsapp',
'zoom',
],
gem: [
],
mas: [
'1126100185', // Cashew
'946399090', // Telegram Desktop
'913158085', // Expressions
'509818877', // Type Fu
'497799835', // Xcode
'937984704', // Amphetamine
'409203825', // Numbers
'734418810', // SSH Tunnel18
'1006087419', // SnippetsLab
'975937182', // Fantastical
'1451177988', // Carbonize
'1268962404', // Smart JSON Editor
'880001334', // Reeder
'1403919533', // MWeb
'409183694', // Keynote
],
npm: [
'@aws-amplify/cli',
'Alfred fkill',
'alfred-dark-mode',
'antic',
'buzzphrase',
'carbon-now-cli',
'commitizen',
'dotenv-cli',
'expo-cli',
'express-generator@4',
'firefox',
'fkill',
'gatsby-cli',
'git-recall',
'graphql-playground',
'http-server',
'imagemin-cli',
'instant-markdown-d',
'lerna',
'live-server',
'netlify-cli',
'npm-check',
'plop',
'prettyjson',
'qlmarkdown',
'select-branch',
'svgo',
'trash-cli',
'trash',
'vercel',
'vtop',
'wifi-password-cli',
'wifi',
'yarn-check',
]
};