forked from atomantic/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
123 lines (123 loc) · 2.77 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
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',
'imagemagick',
'imagesnap',
// 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',
'android-studio',
'box-sync',
'caffeine',
'cyberduck',
'charles',
//'comicbooklover',
'chromecast',
'chromedriver',
'diffmerge',
'docker', // docker for mac
'disk-inventory-x',
//'dropbox',
//'evernote',
//'flux',
'lulu',
'gyazo',
'gpg-suite',
//'ireadfast',
'imagealpha',
'imageoptim',
'iterm2',
'intellij-idea',
//'little-snitch',
'menumeters',
'grandperspective',
'macbreakz',
'macdown',
'postman',
'ngrok',
'rescuetime',
//'micro-snitch',
'signal',
//'macvim',
'screenflow',
'sizeup',
'sublime-text',
//'sketchup',
'slack',
'sloth',
'the-unarchiver',
'teamviewer',
//'torbrowser',
//'transmission',
'vanilla',
'visual-studio-code',
//'vlc',
'whatsapp',
'xquartz'
],
gem: [
],
npm: [
'antic',
'buzzphrase',
'eslint',
'instant-markdown-d',
// 'generator-dockerize',
// 'gulp',
'npm-check-updates',
'prettyjson',
'trash',
'vtop'
// ,'yo'
]
};