-
Notifications
You must be signed in to change notification settings - Fork 453
/
config.js
109 lines (109 loc) · 2.61 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
module.exports = {
brew: [
// http://conqueringthecommandline.com/book/ack_ag
'ack',
'ag',
// https://github.com/wting/autojump
'autojump',
// alternative to `cat`: https://github.com/sharkdp/bat
'bat',
// Install GNU core utilities (those that come with macOS are outdated)
// Don’t forget to add `$(brew --prefix coreutils)/libexec/gnubin` to `$PATH`.
'coreutils',
'dos2unix',
// Install GNU `find`, `locate`, `updatedb`, and `xargs`, `g`-prefixed
'findutils',
'fortune',
'fzf',
'readline', // ensure gawk gets good readline
'gawk',
// http://www.lcdf.org/gifsicle/ (because I'm a gif junky)
'gifsicle',
'gnupg',
// 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"
'gnu-sed --with-default-names',
// upgrade grep so we can get things like inverted match (-v)
'grep --with-default-names',
// better, more recent grep
'homebrew/dupes/grep',
// https://github.com/jkbrzt/httpie
'httpie',
// jq is a sort of JSON grep
'jq',
// Mac App Store CLI: https://github.com/mas-cli/mas
'mas',
// Install some other useful utilities like `sponge`
'moreutils',
'nmap',
// 'openconnect',
'reattach-to-user-namespace',
// better/more recent version of screen
'homebrew/dupes/screen',
'tmux',
'todo-txt',
'tree',
'ttyrec',
// better, more recent vim
'vim --with-client-server --with-override-system-vi',
'watch',
// Install wget with IRI support
'wget --enable-iri'
],
cask: [
//'adium',
//'amazon-cloud-drive',
//'atom',
//'box-sync',
//'comicbooklover',
//'diffmerge',
'docker', // docker for mac
//'dropbox',
//'evernote',
//'flux',
'gpg-suite',
//'ireadfast',
'iterm2',
//'little-snitch',
// 'macbreakz',
//'micro-snitch',
// 'signal',
//'macvim',
'sizeup',
//'sketchup',
'slack',
// 'the-unarchiver',
//'torbrowser',
//'transmission',
'visual-studio-code',
//'vlc',
'xquartz'
],
gem: [
],
npm: [
'antic',
'buzzphrase',
'eslint',
'instant-markdown-d',
//'generator-dockerize',
//'gulp',
//'npm-check-updates',
'prettyjson',
'trash',
'vtop'
// ,'yo'
],
mas: [
//com.apple.dt.Xcode (10.2.1)
'497799835',
//com.if.Amphetamine (4.1.6)
//'937984704',
//net.shinyfrog.bear (1.6.15)
//'1091189122',
//com.monosnap.monosnap (3.5.8)
//'540348655',
//com.app77.pwsafemac (4.17)
//'520993579',
],
};