## [Installation](https://dineshpandiyan.com/blog/install-neovim-macos/#install-neovim)
1. Go to the [release page](https://github.com/neovim/neovim/releases) and pick the version you want to install.
2. Follow the steps and extract the `nvim-macos-*.tar.gz` file in your Downloads directory.
3. Create a new directory called `bin` in your home directory `mkdir ~/bin`.
4. Move the extracted nvim directory to the newly created bin directory `mv ~/Downloads/nvim-macos-your-version ~/bin/`.
5. Open your `~/.zshrc` or `~/.bashrc` using your existing editor. Eg. `code ~/.zshrc` or `nano ~/.zshrc`.
6. Add an alias to the nvim executable at the end of the rc file. `alias nvim="$HOME/bin/nvim-macos-your-version/bin/nvim"`. Save the changes.
7. Source the latest rc Eg. `source ~/.zshrc` or `source ~/.bashrc` to refresh your shell. Alternatively you can also restart your terminal.
8. All done. You can now use the `nvim` command to start neovim from your terminal.