mirror of
https://github.com/halfdan/dotfiles.git
synced 2025-04-26 20:35:40 +00:00
21 lines
373 B
Bash
21 lines
373 B
Bash
#!/bin/bash
|
||
|
||
# Install command-line tools using Homebrew.
|
||
|
||
# Make sure we’re using the latest Homebrew.
|
||
brew update
|
||
|
||
# Upgrade any already-installed formulae.
|
||
brew upgrade
|
||
|
||
# Save Homebrew’s installed location.
|
||
BREW_PREFIX=$(brew --prefix)
|
||
|
||
brew install git
|
||
brew install nvim
|
||
brew install ripgrep
|
||
brew install fzf
|
||
brew install direnv
|
||
brew install jq
|
||
brew install ctags
|