-
Notifications
You must be signed in to change notification settings - Fork 0
/
Brewfile
51 lines (46 loc) · 1.12 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
tap "homebrew/bundle"
tap "homebrew/core"
if OS.mac?
# Taps
tap "homebrew/cask"
tap "homebrew/cask-fonts"
# Applications
cask "1password"
cask "font-jetbrains-mono-nerd-font"
cask "hammerspoon"
cask "hiddenbar" # Hide OSX window bar items
cask "rectangle" # Window snapping
cask "spotify"
cask "wezterm"
cask "zulu"
# Packages
brew "reattach-to-user-namespace"
elsif OS.linux?
brew "xclip"
end
# Packages
brew "bat" # better cat
brew "cheat" # Interactive cheat sheets (similar to "tldr")
brew "dive" # Analyze docker image layers
brew "fd" # find alternative
brew "fzf" # Fuzzy finder
brew "gh" # Github CLI
brew "glow" # markdown TUI
brew "gum" # shell script utility
brew "htop"
brew "jq"
brew "neovim"
brew "nnn"
brew "python"
brew "ripgrep" # grep alternative
brew "sd" # sed alternative
brew "shellcheck" # diagnostics for shell scripts
brew "stow" # linking tool
brew "tig" # git TUI
brew "tmux"
brew "tree"
brew "watch"
brew "wget"
brew "yq" # jq for yaml
brew "zsh"
# vim:ft=ruby