Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added instructions on how to Install neovim on linux #86

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,34 @@ about though i would just suggest `git log -S`).
* [a3bad06a](https://github.com/ThePrimeagen/init.lua/commit/a3bad06a4681c322538d609aa1c0bd18880f77c6) disabled eslint. driving me crazy


### Clean neovim install to get to start of video

**Linux**

_Assumes you have a clean install without a previous neovim install_
1. Go to your home directory
```
cd ~
```
2. Download the latest AppImage
```
curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim.appimage

./nvim.appimage
```
3. Give the AppImage permissions
```
chmod u+x ~/nvim.appimage
```
4. Move the AppImage to your local bin
```
sudo mv ~/nvim.appimage /usr/bin/nvim
```
5. Verify the install
```
nvim --version
```
6. Start the video
```
`nvim .`
```