Skip to content

Commit 0e02572

Browse files
EvanCarrollmonk3yd
authored andcommitted
Update README.md (nvim-lua#860)
Attempted fix for nvim-lua#859, provide reasonable Debian install instructions -- comment on GitHub issue with refinement.
1 parent 9b0cdf8 commit 0e02572

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -200,9 +200,14 @@ sudo apt install make gcc ripgrep unzip git neovim
200200
```
201201
sudo apt update
202202
sudo apt install make gcc ripgrep unzip git
203-
echo "deb https://deb.debian.org/debian unstable main" | sudo tee -a /etc/apt/sources.list
204-
sudo apt update
205-
sudo apt install -t unstable neovim
203+
204+
# Now we install nvim
205+
curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux64.tar.gz
206+
sudo rm -rf /opt/nvim
207+
sudo tar -C /opt -xzf nvim-linux64.tar.gz
208+
209+
# make it available in /usr/local/bin, distro installs to /usr/bin
210+
sudo ln -sf /opt/nvim-linux64/bin/nvim /usr/local/bin/
206211
```
207212
</details>
208213
<details><summary>Fedora Install Steps</summary>

0 commit comments

Comments
 (0)