-
Notifications
You must be signed in to change notification settings - Fork 372
Expand file tree
/
Copy pathBrewfile
More file actions
63 lines (56 loc) · 2.99 KB
/
Brewfile
File metadata and controls
63 lines (56 loc) · 2.99 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
# vim:ft=ruby
tap 'homebrew/bundle'
if OS.mac?
tap 'FelixKratz/formulae' # For janky borders
# taps
brew 'noti' # utility to display notifications from scripts
brew 'trash' # rm, but put in the trash rather than completely delete
brew 'borders' # add borders to windows
# Applications
cask 'ghostty' # a better terminal emulator
cask 'wezterm' # a better terminal emulator
cask '1password/tap/1password-cli' # 1Password CLI
cask 'karabiner-elements' # keyboard customizer
cask 'nikitabobko/tap/aerospace' # a tiling window manager
cask 'claude-code' # Claude AI CLI
# Fonts
cask 'font-symbols-only-nerd-font' # nerd-only symbols font
cask 'font-monaspace' # Preferred monospace font
elsif OS.linux?
brew 'xclip' # access to clipboard (similar to pbcopy/pbpaste)
end
# Latest versions of some core utilities
brew 'git' # Git version control
brew 'vim' # Vim editor
brew 'bash' # bash shell
brew 'zsh' # zsh shell
brew 'grep' # grep
# packages
brew 'bat' # better cat
brew 'cloc' # lines of code counter
brew 'entr' # file watcher / command runner
brew 'eza' # ls alternative
brew 'fd' # find alternative
brew 'fnm' # Fast Node version manager
brew 'gum' # fancy UI utilities
brew 'rbenv' # Ruby version manager
brew 'fzf' # Fuzzy file searcher, used in scripts and in vim
brew 'gh' # GitHub CLI
brew 'git-delta' # a better git diff
brew 'glow' # markdown viewer
brew 'gnupg' # GPG
brew 'highlight' # code syntax highlighting
brew 'btop' # a top alternative
brew 'jq' # work with JSON files in shell scripts
brew 'lazygit' # a better git UI
brew 'neovim' # A better vim
brew 'python' # python (latest)
brew 'ripgrep' # very fast file searcher
brew 'shellcheck' # diagnostics for shell sripts
brew 'stylua' # lua code formatter
brew 'tmux' # terminal multiplexer
brew 'tree' # pretty-print directory contents
brew 'wdiff' # word differences in text files
brew 'wget' # internet file retriever
brew 'zoxide' # switch between most used directories
brew 'sesh' # terminal session manager