···2233## Installation
4455+### Mac
66+77+1. Install Apple's Command Line Tools, which are prerequisites for Git and Homebrew
88+59```bash
66-git clone 'https://github.com/boltlessengineer/dotfiles.git'
1010+xcode-select --install
1111+```
71288-cd dotfiles
1313+2. Clone repo into new hidden directory
9141515+```bash
1616+git clone https://github.com/boltlessengineer/dotfiles ~/.dotfiles
1717+```
1818+1919+3. Create symlinks in the $HOME directory to the real files in the repo
2020+2121+```bash
1022# install neovim config
1123ln -shf ./nvim ~/.config/nvim
12241325# install fish config
1414-ln -s ./fish ~/.config/fish
2626+ln -shf ./fish ~/.config/fish
15271628# install lf config
1717-ln -s ./lf ~/.config/lf
2929+ln -shf ./lf ~/.config/lf
1830```
19312032### install fish
3333+2134```bash
3535+# Install fish
2236brew install fish
2323-fish
3737+3838+# Add fish to /etc/shells
3939+echo "$(where fish)" | sudo tee -a /etc/shells
4040+4141+# Change default shell to fish
4242+chsh -s "$(where fish)"
4343+4444+# Run fish with --no-config
4545+# Some programs should be installed first
4646+fish --no-config
4747+4848+#
4949+2450fisher update
2551```
5252+5353+# TODO
5454+- [ ] Test this in new Mac
5555+- [ ] Add Brewfile