forked from atomantic/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
85 lines (85 loc) · 1.95 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
module.exports = {
brew: [
// http://conqueringthecommandline.com/book/ack_ag
'ack',
'ag',
// 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',
'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',
// 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',
'tree',
'ttyrec',
// better, more recent vim
'vim --with-override-system-vi',
'watch',
// Install wget with IRI support
'wget --enable-iri'
],
cask: [
//'adium',
//'amazon-cloud-drive',
//'atom',
// 'box-sync',
//'comicbooklover',
//'diffmerge',
//'dropbox',
//'evernote',
'gpgtools',
//'ireadfast',
'iterm2',
'little-snitch',
'micro-snitch',
//'macvim',
'sizeup',
//'sketchup',
'slack',
'the-unarchiver',
//'torbrowser',
//'transmission',
//'vlc',
'xquartz'
],
gem: [
'git-up'
],
npm: [
'antic',
'buzzphrase',
'eslint',
'instant-markdown-d',
// 'generator-dockerize',
'gulp',
'npm-check',
'prettyjson',
'trash',
'vtop'
// ,'yo'
]
};