this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

More details

+35 -5
+35 -5
README.md
··· 2 2 3 3 ## Installation 4 4 5 + ### Mac 6 + 7 + 1. Install Apple's Command Line Tools, which are prerequisites for Git and Homebrew 8 + 5 9 ```bash 6 - git clone 'https://github.com/boltlessengineer/dotfiles.git' 10 + xcode-select --install 11 + ``` 7 12 8 - cd dotfiles 13 + 2. Clone repo into new hidden directory 9 14 15 + ```bash 16 + git clone https://github.com/boltlessengineer/dotfiles ~/.dotfiles 17 + ``` 18 + 19 + 3. Create symlinks in the $HOME directory to the real files in the repo 20 + 21 + ```bash 10 22 # install neovim config 11 23 ln -shf ./nvim ~/.config/nvim 12 24 13 25 # install fish config 14 - ln -s ./fish ~/.config/fish 26 + ln -shf ./fish ~/.config/fish 15 27 16 28 # install lf config 17 - ln -s ./lf ~/.config/lf 29 + ln -shf ./lf ~/.config/lf 18 30 ``` 19 31 20 32 ### install fish 33 + 21 34 ```bash 35 + # Install fish 22 36 brew install fish 23 - fish 37 + 38 + # Add fish to /etc/shells 39 + echo "$(where fish)" | sudo tee -a /etc/shells 40 + 41 + # Change default shell to fish 42 + chsh -s "$(where fish)" 43 + 44 + # Run fish with --no-config 45 + # Some programs should be installed first 46 + fish --no-config 47 + 48 + # 49 + 24 50 fisher update 25 51 ``` 52 + 53 + # TODO 54 + - [ ] Test this in new Mac 55 + - [ ] Add Brewfile