-
Notifications
You must be signed in to change notification settings - Fork 2
/
.Brewfile
40 lines (36 loc) · 1.1 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
# These formula are the absolute base for my macOS environment.
# Maintained version of `exa`, a replacement for `ls`.
brew "eza"
# Find files - used by `zf` in fish.
brew "fd"
# My default shell
brew "fish"
# Fuzzy finding, for fish.
brew "fzf"
# Interacting with GitHub via the CLI - configured in ~/.config/gh/config.yml.
brew "gh"
# VCS - configured in ~/.config/git/config and ~/.config/git/ignore.
brew "git"
# Latest version of go - for tool binaries
brew "go"
# Used by gh in ~/.config/gh/config.yml.
brew "gum"
# jumping around - bound to `z` in fish.
brew "jump"
# project-specific commands - abbreviated to `j` in fish.
brew "just"
# $EDITOR
brew "neovim"
# install and run python applications in isolated environments
# used to install and run beets
# https://github.com/pypa/pipx
brew "pipx"
# better searching - configured in ~/.config/ripgreprc.
brew "ripgrep"
# terminal
cask "kitty"
# fonts
tap "homebrew/cask-fonts"
# [homebrew-bundle's README][^1] designates the example Brewfile as `ruby` in the markdown.
# [^1]: https://github.com/Homebrew/homebrew-bundle/blob/master/README.md
# vim: set filetype=ruby: