File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -200,9 +200,14 @@ sudo apt install make gcc ripgrep unzip git neovim
200200```
201201sudo apt update
202202sudo 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 >
You can’t perform that action at this time.
0 commit comments