-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBrewfile
75 lines (61 loc) · 1.15 KB
/
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
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
# vim: set ft=ruby:
# frozen_string_literal: true
personal = 'Pyra'
work = 'Poppi'
hostname = `scutil --get ComputerName`.chomp
tap 'starkwm/formulae'
tap 'thoughtbot/formulae'
brew 'fd'
brew 'rcm'
brew 'ripgrep'
brew 'skbd'
brew 'zsh-autosuggestions'
cask '1password'
cask 'font-iosevka-custom'
cask 'ghostty'
cask 'itsycal'
cask 'keka'
cask 'stark@tip'
if [personal, work].include?(hostname)
tap 'tombell/formulae'
brew 'fzf'
brew 'git'
brew 'jq'
brew 'libyaml'
brew 'mise'
brew 'tmux'
brew 'tombell/formulae/tm'
cask 'appcleaner'
cask 'discord'
cask 'google-chrome'
cask 'keyboardcleantool'
cask 'telegram-desktop'
end
if hostname == personal
brew 'ensong'
brew 'transmission-cli'
cask 'stolendata-mpv'
cask 'xld'
end
if hostname == work
tap 'auth0/auth0-cli'
tap 'heroku/brew'
brew 'auth0'
brew 'heroku/brew/heroku'
brew 'libffi'
brew 'libpq'
brew 'libxml2'
brew 'mas'
brew 'postgresql@16'
brew 'redis'
cask 'android-studio'
cask 'chromedriver'
cask 'displaylink'
cask 'postico'
cask 'rapidapi'
cask 'slack'
cask 'soundsource'
cask 'zoom'
cask 'zulu@17'
mas 'Xcode', id: 497_799_835
end