-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBrewfile
57 lines (44 loc) · 1.41 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
# Default Configurations:
# Set arguments for all 'brew install --cask' commands
# require-sha: abort installation of cask if no checksum is defined
cask_args require_sha: true
# Main Applications:
# Browser: Arc
# brew install --cask arc
cask "arc"
# Terminal: Warp
# brew install --cask warp
cask "warp"
# Containerisation: Docker
# brew install --cask docker
cask "docker"
# Productivity Tools: Rectangle
# Allows for moving and resizing windows using keyboard shortcuts or snap areas
# brew install --cask rectangle
cask "rectangle"
# IDE: IntelliJ Community Edition
# This also installs Kotlin as a language
# brew install --cask intellij-idea-ce
cask "intellij-idea-ce"
# Java Development Kit: Adoptium Temurin@21 - LTS
# brew install --cask temurin@21
cask "temurin@21"
# Command Line Applications:
# IDE: Neovim
# brew install neovim
brew "neovim"
# Neovim Configurations
# Required for LazyVim
#
# ripgrep: a line-oriented search tool that recursively searches the current directory for a regex pattern
# brew install ripgrep
brew "ripgrep"
# fd is a program to find entries in your filesystem. It is a simple, fast and user-friendly alternative to find
brew "fd"
# Package Manager for Lluarocks
# luarocks
brew "luarocks"
# Build Tools: Gradle
# brew install gradle
# Prerequisite: Java is installed
brew "gradle"