We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b0cdf8 commit 0e02572Copy full SHA for 0e02572
README.md
@@ -200,9 +200,14 @@ sudo apt install make gcc ripgrep unzip git neovim
200
```
201
sudo apt update
202
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
+
+# Now we install nvim
+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/
211
212
</details>
213
<details><summary>Fedora Install Steps</summary>
0 commit comments