Skip to content

Commit

Permalink
homebrew: add alias brewL
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdanerd authored and Erik Johansen committed Feb 1, 2021
1 parent bbfd0cd commit 158a4e0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions modules/homebrew/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Aliases

- `brewc` cleans outdated brews and their cached archives.
- `brewi` installs a formula.
- `brewL` lists installed formulae that are not dependencies of another installed formula.
- `brewl` lists installed formulae.
- `brewo` lists brews which have an update available.
- `brews` searches for a formula.
Expand Down
3 changes: 2 additions & 1 deletion modules/homebrew/init.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ fi
# Variables
#

# Load standard Homebrew shellenv into the shell session.
# Load standard Homebrew shellenv into the shell session.
# Load 'HOMEBREW_' prefixed variables only. Avoid loading 'PATH' related
# variables as they are already handled in standard zsh configuration.
if (( $+commands[brew] )); then
Expand All @@ -28,6 +28,7 @@ fi
# Homebrew
alias brewc='brew cleanup'
alias brewi='brew install'
alias brewL='brew leaves'
alias brewl='brew list'
alias brewo='brew outdated'
alias brews='brew search'
Expand Down

0 comments on commit 158a4e0

Please sign in to comment.