-
Notifications
You must be signed in to change notification settings - Fork 34.5k
Update README.md #860
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update README.md #860
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
EvanCarroll marked this conversation as resolved.
Show resolved
Hide resolved
|
||
sudo tar -C /opt -xzf nvim-linux64.tar.gz | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. when testing this I noticed that
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Or just put it in a subshell if you set There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's not what I'm saying, a user having a umask 027 intention is that the user's files are not readable by other users by default. I think that's not an uncommon setting. That doesn't translate to the intention of root installed packages not being able to be used by users. If the |
||
|
||
# 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> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On a fresh debian install I get an error that curl is not installed:
so please add also
curl
to the above list of dependencies: