mirror of
https://github.com/halfdan/dotfiles.git
synced 2025-04-25 20:05:40 +00:00
24 lines
423 B
Bash
24 lines
423 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
|
||
|
||
# Post install
|
||
$(brew --prefix)/opt/fzf/install
|