diff options
author | Damjan 9000 <damjan.9000@gmail.com> | 2024-04-20 18:03:57 +0200 |
---|---|---|
committer | Damjan 9000 <damjan.9000@gmail.com> | 2024-04-20 18:03:57 +0200 |
commit | 77119da9419cb8753425e20f9d20e21783472013 (patch) | |
tree | 6f35f0ed1224ca7b4dfb479d89bf427bddea7053 /README.md | |
parent | b8b2e88521b34fa1d5ad13e73647f62c83ca2e7d (diff) | |
parent | 931ec5c226b8440fa3ed066a6a2fbe78e29bf5e1 (diff) |
Merge 'upstream' Update README.md Debian install instructions
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -205,9 +205,14 @@ sudo apt install make gcc ripgrep unzip git neovim ``` sudo apt update sudo apt install make gcc ripgrep unzip git -echo "deb https://deb.debian.org/debian unstable main" | sudo tee -a /etc/apt/sources.list -sudo apt update -sudo apt install -t unstable neovim + +# Now we install nvim +curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux64.tar.gz +sudo rm -rf /opt/nvim +sudo tar -C /opt -xzf nvim-linux64.tar.gz + +# make it available in /usr/local/bin, distro installs to /usr/bin +sudo ln -sf /opt/nvim-linux64/bin/nvim /usr/local/bin/ ``` </details> <details><summary>Fedora Install Steps</summary> |