My Terminal config on Mac M1
Currently, I am using zsh as my shell and nvim as my editor. I have made some aliases to useful/improved tools such as exa. Go to the bottom of .zshrc to see all aliases
**
⚠️ WARNING: Many of the commands here will overwrite any settings you have in your config files already!**
brew install zsh
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
brew install exa
brew install fff
Create a link from this project to your home directory. This will most likely be this command:
ln ./.zshrc ~/.zshrc
Run this inside this project:
brew install neovim
ln ./nvim ~/.config/nvim
if this ln
gives you an error, run this instead:
sudo cp -rs ./nvim ~/.config/nvim
Then, you will need to fix all of the places where /Users/owner/
is present
Enter ~/.config/nvim
and type:
find . -type f -name "*.lua" -print0 | xargs -0 sed -i '' -e 's/owner/your_username/g'