-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBrewfile
98 lines (69 loc) · 1.32 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
tap "AdoptOpenJDK/openjdk"
# Mac App Store command-line interface
brew "mas"
# manage dotfiles
brew "stow"
# terminal multiplexer
brew "tmux"
# best editor
brew "neovim"
# best vcs
brew "git"
# awesome cli fuzzy finder
brew "fzf"
# awesome JSON processor
brew "jq"
# kubernetes cli
brew "kubectl"
# better kubernetes cli
brew "k9s"
# fast/unobtrusive autosuggestions
brew "zsh-autosuggestions"
# Load/unload environment variables based on PWD
brew "direnv"
# execute a program periodically
brew "watch"
# node version manager
brew "nvm"
# install postgresql
brew "postgresql"
# `cat`, but with syntax highlighting and Git integration
brew "bat"
# fast search
brew "ripgrep"
# install node.js & npm
brew "node"
# install yarn for js
brew "yarn"
# Install python
brew "python3"
# Install Ruby
brew "ruby"
# Ruby environment tool
brew "chruby"
# Install Kotlin
brew "kotlin"
# Build automation tool
brew "gradle"
# node version manager
brew "n"
# a viewer for git and diff output
brew "git-delta"
# ----- Casks -----
# Basic tools
cask "google-chrome"
cask "brave-browser"
cask "iterm2"
cask "slack"
cask "spotify"
cask "zoomus"
cask "1password"
cask "visual-studio-code"
cask "docker"
# IDEs
cask "intellij-idea-ce"
cask "datagrip"
# Prebuilt OpenJDK Binaries
cask "adoptopenjdk"
cask "adoptopenjdk11"
cask "adoptopenjdk12"