.dotfiles/macos/Brewfile

165 lines
4.1 KiB
Text
Raw Normal View History

# Taps
tap 'homebrew/bundle'
2024-01-19 14:51:26 +01:00
tap 'oven-sh/bun'
2024-03-20 21:16:55 +01:00
tap 'withgraphite/tap'
tap 'shivammathur/extensions'
2024-12-09 13:12:14 +01:00
tap 'leoafarias/fvm'
2024-04-02 23:21:53 +02:00
# Meta tools for this bundle to install properly
brew 'mas' # Mac App Store manager to install appstore apps
brew 'svn' # Needed to install fonts
# Essentials
2024-12-02 23:16:21 +01:00
brew 'bash' # Latest Bash version
brew 'coreutils' # Those that come with macOS are outdated
brew 'git'
brew 'gnupg' # Dependency for pass etc but slightly conflicts with gpg-suite see https://github.com/Homebrew/homebrew-core/issues/74447
brew 'grep'
2024-04-02 23:21:53 +02:00
brew 'pkg-config' # https://github.com/driesvints/dotfiles/issues/20
brew 'imagemagick' # Needed for PHP imagick extension
brew 'jq'
brew 'ffmpeg'
brew "openjdk"
2023-01-15 00:41:32 +01:00
brew 'asimov' # Exclude node_modules etc from TM backup
2024-04-02 23:21:53 +02:00
brew 'scrcpy' # View screen of an android device
2024-12-02 23:16:21 +01:00
brew 'poppler' # PDF manipulation (needed for some projects)
brew 'qpdf' # PDF manipulation (needed for some projects)
2024-04-02 23:21:53 +02:00
brew 'rename'
brew 'gh' # GitHub CLI
brew 'libpq' # For psql to use laravel squash migrations etc
2024-04-02 23:21:53 +02:00
# Infrastructure tools
2024-12-02 23:16:21 +01:00
brew 'awscli'
brew 'b2-tools'
2024-10-11 10:58:21 +02:00
brew 'just' # Better than makefiles
2024-04-02 23:21:53 +02:00
brew 'ansible'
brew 'ansible-lint'
2024-10-11 10:58:21 +02:00
brew 'dive' # Inspect container images
2024-04-02 23:21:53 +02:00
# Git tools
brew 'git-delta' # Nice diff viewer
2023-06-29 15:17:53 +02:00
brew 'git-absorb' # amazing tool for better git fixup
2024-03-20 21:16:55 +01:00
brew 'git-town' # Simple git stacking tool
brew 'withgraphite/tap/graphite' # Advanced stacking tool with web app
2024-04-02 23:21:53 +02:00
2024-12-02 23:16:21 +01:00
# Quicklook extensions
cask 'qlmarkdown'
cask 'quicklook-json'
# Nvim & various dependencies
brew 'neovim'
brew 'wget'
brew 'ripgrep'
# Spatie Medialibrary
brew 'jpegoptim'
brew 'optipng'
brew 'pngquant'
brew 'svgo'
brew 'gifsicle'
2024-12-03 00:27:56 +01:00
# PHP versions + Extensions
brew 'php@8.4'
brew 'shivammathur/extensions/xdebug@8.4'
brew 'shivammathur/extensions/redis@8.4'
brew 'shivammathur/extensions/imagick@8.4'
brew 'php@8.3'
brew 'shivammathur/extensions/xdebug@8.3'
brew 'shivammathur/extensions/redis@8.3'
brew 'shivammathur/extensions/imagick@8.3'
brew 'php@8.2'
brew 'shivammathur/extensions/xdebug@8.2'
brew 'shivammathur/extensions/redis@8.2'
brew 'shivammathur/extensions/imagick@8.2'
# Valet requirements
brew 'nginx'
brew 'dnsmasq'
2024-12-02 23:16:21 +01:00
# Runtimes & package managers
2024-12-03 00:27:56 +01:00
brew 'composer'
2024-08-07 20:20:13 +02:00
brew 'uv' # python dependency manager
brew 'node'
2024-04-02 02:29:58 +02:00
brew 'deno'
brew 'oven-sh/bun/bun'
2022-11-11 23:22:56 +01:00
brew 'go'
brew 'rustup'
2023-12-02 13:04:05 +01:00
brew 'cargo-make'
2024-12-09 13:18:28 +01:00
cask 'flutter'
2024-12-09 13:12:14 +01:00
brew 'fvm'
2024-12-18 22:06:18 +01:00
brew 'maven' # for keycloakify etc.
2023-12-02 13:04:05 +01:00
# Apps
2024-12-02 23:16:21 +01:00
cask 'setapp' # Paid App Store for Cleanshot, TablePlus etc.
cask '1password' # Password Manager
cask '1password-cli'
2024-12-02 23:16:21 +01:00
cask 'arq' # Backup solution
cask 'docker'
cask 'chromium', args: { no_quarantine: true }
cask 'firefox'
2024-12-02 23:16:21 +01:00
cask 'tunnelblick' # OpenVPN Application to access the company VPN
# Other tools (not necessary for work)
cask 'gpg-suite' # GPG handling for signing commits and email (SSH signing can also be used instead)
cask 'imageoptim' # Tool to optimize images / svgs
cask 'jordanbaird-ice' # Bartender replacement for cleaner menubar
brew 'starship' # fancy shell prompt
2025-01-20 16:09:04 +01:00
brew 'eza' # fancy ls replacement
2025-01-02 09:08:25 +01:00
cask 'ghostty' # Better terminal
2024-12-02 23:16:21 +01:00
cask 'rectangle' # Better snap to edge behavior than native
cask 'raycast' # Better spotlight search
# Office / Communication
cask 'signal'
cask 'tinkerwell'
2024-12-02 23:16:21 +01:00
cask 'microsoft-office'
cask 'microsoft-teams'
cask 'notion'
cask 'figma'
cask 'around'
# IDEs
cask 'visual-studio-code'
2024-12-02 23:16:21 +01:00
cask 'jetbrains-toolbox'
cask 'phpstorm'
cask 'intellij-idea-ce'
2022-05-30 10:50:02 +02:00
cask 'android-studio'
cask 'android-platform-tools'
# Fonts
cask 'font-fira-code'
cask 'font-fira-code-nerd-font'
cask 'font-lato'
cask 'font-open-sans'
cask 'font-roboto'
cask 'font-source-code-pro-for-powerline'
cask 'font-source-code-pro'
2024-04-02 23:21:53 +02:00
# cb. fonts
2022-12-01 09:44:45 +01:00
cask 'font-montserrat'
cask 'font-inter'
cask 'font-reenie-beanie'
# Mac App Store
mas 'Keynote', id: 409183694
mas 'Numbers', id: 409203825
mas 'Microsoft Remote Desktop', id: 1295203466
2025-01-20 16:12:53 +01:00
mas 'Xcode', id: 497799835
2024-12-02 23:16:21 +01:00
# Personal
brew 'pass' # GPG-based PW manager
cask 'tailscale'
cask 'spotify'
cask 'element'
cask 'discord'
cask 'obs'
cask 'obsidian'
mas 'Strongbox - KeePass & PwSafe', id: 897283731
2024-04-02 22:58:58 +02:00
mas 'Things', id: 904280696
2024-12-02 23:16:21 +01:00
mas 'Menu Bar Controller for Sonos', id: 1357379892
mas 'Goodnotes', id: 1444383602