-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot_Brewfile
More file actions
84 lines (73 loc) · 1.94 KB
/
dot_Brewfile
File metadata and controls
84 lines (73 loc) · 1.94 KB
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
# Modern utilities for common shell tasks
brew 'bat' # Nicer cat
brew 'eza' # Nicer ls
brew 'fd' # Nicer find
brew 'procs' # Nicer ps
brew 'ripgrep' # Nicer grep
brew 'sd' # Nicer sed
brew 'zoxide' # Nicer cd
# Shell enhancements
brew 'starship' # Prompt
brew 'fzf' # Another fuzzy finder
brew 'tmux'
tap 'cormacrelf/tap'
brew 'cormacrelf/tap/dark-notify'
# Git
brew 'git'
brew 'gh' # GitHub
brew 'git-absorb' # Automatic git commit --fixup
brew 'git-delta' # Nicer diff view for git
brew 'difftastic' # Structural diffing
tap 'jesseduffield/lazygit' # TUI for git
brew 'jesseduffield/lazygit/lazygit'
# Filter processors for various file types
brew 'jq' # JSON processor
brew 'yq' # YAML processor
brew 'miller' # CSV/JSON processor
# Vim
brew 'neovim'
brew 'tree-sitter'
# Node
brew 'node'
# Python
brew 'python'
brew 'uv'
# Scripting tools
brew 'entr' # File watcher for running commands
brew 'watch' # For running commands on a regular interval
brew 'gum' # Better shell script inputs and TUI
brew 'hyperfine' # Better benchmarking
brew 'terminal-notifier' # Send macOS notifications from the terminal
brew 'llm' # Interacting with LLMs on the command line
brew 'pdfgrep' # Searching in PDFs
# Misc
brew 'gmailctl' # Gmail filter management
brew 'tokei' # Code statistics
# Casks and App Store apps
cask '1password-cli'
cask '1password'
cask 'appcleaner'
cask 'claude'
cask 'cleanshot'
cask 'docker'
cask 'espanso'
cask 'google-chrome'
cask 'google-drive'
cask 'hammerspoon'
cask 'ghostty'
cask 'jordanbaird-ice'
cask 'logi-options+'
cask 'obsidian'
cask 'reader'
cask 'slack'
cask 'the-unarchiver'
cask 'visual-studio-code'
cask 'vlc'
cask 'zoom'
mas 'Noizio', id: 928871589
mas 'Things 3', id: 904280696
mas 'Yoink', id: 457622435
# Fonts
cask 'font-monaspace'
cask 'font-victor-mono-nerd-font'
# vim: ft=ruby