-
Notifications
You must be signed in to change notification settings - Fork 0
Quickstart
Trevor Hauter edited this page Sep 7, 2024
·
6 revisions
DISCLAIMER: I haven't ran through this setup from scratch yet. If you do, any feedback is greatly appreciated. If you run into any issues, check out Troubleshooting.
sudo apt-get install neovim
brew install neovim
Create a directory for nvtrev2, cd into it, and clone this repo there
mkdir ~/.config/nvim # This is where the neovim configuration lives by default
cd ~/.config/nvim
git clone $URL . # This clones our project into the directory without the project folder
???
- Need to fill this part out.
brew install node
NOTE: This may not be required, as we now handle eslint with mason and that is installed automatically. I am not sure if it will work as desired with the airbnb config. Further testing is required.
If you want to just install this anyways, it won't cause any harm.
npm install --save-dev eslint eslint-config-airbnb
Read more:
- https://www.nerdfonts.com/font-downloads
- Linux (Ubuntu specifically)
- Install nerd font https://www.nerdfonts.com/font-downloads (I used UbuntuMono)
- https://bytexd.com/how-to-install-nerd-fonts-on-linux/
- Update your terminal to use the new font!
brew install --cask font-ubuntu-mono-nerd-font
- NOTE: You can use whatever font you want, but I recommend a mono font (especially if you're using iterm2)
You will want to update your terminal to use the newly downloaded font.
sudo apt-get install ripgrep
brew install ripgrep
pip install black # you will need to install python if it isn't already installed