Dotfiles for macOS environment.
- Terminal:
- Warp as terminal
- Fish as shell
- IDE:
- VS Code Insiders as IDE
- Terminal is also using Starship and Fish
- Install Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
- Install extra crates:
cat ../common/rust/crates | while IFS= read -r line; do read -r crate arguments <<< "$$line"; cargo install "$$crate" $$arguments; done
- Install brew:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- Install extra packages:
cat packages | xargs -I {} brew install {}
- Initialize dotfiles and check if all the links exist and are correct
dot init SergioGasquez/dotfiles dot -v check