diff options
author | Damjan 9000 <damjan.9000@gmail.com> | 2024-04-20 19:14:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-20 13:14:24 -0400 |
commit | 9f5176fc2a30fbf5f0601ba1c84a345a4943bac2 (patch) | |
tree | fad6988d750414f7a1c7bb47a9223a9fa84cc66f | |
parent | 931ec5c226b8440fa3ed066a6a2fbe78e29bf5e1 (diff) |
Minor improvements of debian install instructions. Fixes #859 (#869)
-rw-r--r-- | README.md | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -199,11 +199,13 @@ sudo apt install make gcc ripgrep unzip git neovim ``` sudo apt update -sudo apt install make gcc ripgrep unzip git +sudo apt install make gcc ripgrep unzip git curl # Now we install nvim curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux64.tar.gz -sudo rm -rf /opt/nvim +sudo rm -rf /opt/nvim-linux64 +sudo mkdir -p /opt/nvim-linux64 +sudo chmod a+rX /opt/nvim-linux64 sudo tar -C /opt -xzf nvim-linux64.tar.gz # make it available in /usr/local/bin, distro installs to /usr/bin |