Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 735 Bytes

SetupOSX.md

File metadata and controls

32 lines (24 loc) · 735 Bytes
# homebrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
(echo; echo 'eval "$(/opt/homebrew/bin/brew shellenv)"') >> ~/.bash_profile
eval "$(/opt/homebrew/bin/brew shellenv)"

brew install starship
brew install nvim
brew install asdf
brew install git

cp -r astronvim/ ~/.config/nvim/lua/user

asdf plugin add nodejs
asdf install nodejs latest

mkdir ~/git && cd ~/git
git clone https://github.com/rbren/homedir
cd homedir
cp -r dotfiles/.* ~/
cp -r dotfiles/* ~/
echo ". ~/.bashrc" >> ~/.bash_profile

source ~/.bashrc

# Copy github keys, add GITHUB_ACCESS_TOKEN to ~/.bash_profile
git remote set-url origin ssh://[email protected]/rbren/homedir

./scripts/vim.sh

build_devbox