diff options
author | Evan Carroll <me@evancarroll.com> | 2024-04-20 10:55:01 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-20 11:55:01 -0400 |
commit | 931ec5c226b8440fa3ed066a6a2fbe78e29bf5e1 (patch) | |
tree | 40cf9359b713d9b0a0d81f56f07d87801b64c2cd /README.md | |
parent | b07176aef66948fa9de810174d3fc8a780eb8953 (diff) |
Update README.md (#860)
Attempted fix for #859, provide reasonable Debian install instructions -- comment on GitHub issue with refinement.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -200,9 +200,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> |