mirror of
https://github.com/jdhao/nvim-config.git
synced 2025-06-08 14:14:33 +02:00
docs: use latest stable version of nvim
This commit is contained in:
parent
b9d1f2ee92
commit
148dabd7ad
@ -16,7 +16,7 @@
|
||||
<a href="https://github.com/jdhao/nvim-config">
|
||||
<img src="https://img.shields.io/github/repo-size/jdhao/nvim-config?style=flat-square&label=Repo" alt="Repo size">
|
||||
</a>
|
||||
<a href="https://github.com/neovim/neovim/releases/tag/v0.6.1">
|
||||
<a href="https://github.com/neovim/neovim/releases/tag/stable">
|
||||
<img src="https://img.shields.io/badge/Neovim-0.6.1-blueviolet.svg?style=flat-square&logo=Neovim&logoColor=green" alt="Neovim minimum version"/>
|
||||
</a>
|
||||
<img src="https://img.shields.io/github/languages/top/jdhao/nvim-config" />
|
||||
@ -42,7 +42,7 @@ add it to your own Nvim config.
|
||||
See [doc here](docs/README.md) on how to install Nvim's dependencies, Nvim
|
||||
itself, and how to set up on different platforms (Linux, macOS and Windows).
|
||||
|
||||
**This config is tested against [Nvim v0.6.1 release](https://github.com/neovim/neovim/releases/tag/v0.6.0).
|
||||
**This config is tested against [Nvim v0.6.1 release](https://github.com/neovim/neovim/releases/tag/stable).
|
||||
No backward compatibility is guaranteed.**
|
||||
|
||||
# Features #
|
||||
|
||||
@ -142,11 +142,11 @@ available in normal font, we need to install a patched font from the [nerd-fonts
|
||||
# Install Nvim
|
||||
|
||||
There are various ways to install Nvim depending on your system. Current
|
||||
configuration is tested against nvim v0.6.0.
|
||||
configuration is tested against nvim v0.6.1.
|
||||
|
||||
## Linux
|
||||
|
||||
We can directly download the binary release from [here](https://github.com/neovim/neovim/releases/download/v0.6.0/nvim-linux64.tar.gz).
|
||||
We can directly download the binary release from [here](https://github.com/neovim/neovim/releases/download/stable/nvim-linux64.tar.gz).
|
||||
|
||||
## Windows
|
||||
|
||||
@ -156,7 +156,7 @@ The easiest way to install Nvim on Windows is via chocolatey:
|
||||
choco install neovim
|
||||
```
|
||||
|
||||
You may download from [nvim release](https://github.com/neovim/neovim/releases/download/v0.6.0/nvim-win64.zip) from GitHub and manually extract it.
|
||||
You may download from [nvim release](https://github.com/neovim/neovim/releases/download/stable/nvim-win64.zip) from GitHub and manually extract it.
|
||||
|
||||
## macOS
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
#!/bin/bash
|
||||
set -eux
|
||||
|
||||
wget https://github.com/neovim/neovim/releases/download/v0.6.0/nvim-macos.tar.gz
|
||||
wget https://github.com/neovim/neovim/releases/download/stable/nvim-macos.tar.gz
|
||||
|
||||
if [[ ! -d "$HOME/tools/" ]]; then
|
||||
mkdir -p "$HOME/tools"
|
||||
|
||||
@ -188,7 +188,7 @@ fi
|
||||
NVIM_DIR=$HOME/tools/nvim
|
||||
NVIM_SRC_NAME=$HOME/packages/nvim-linux64.tar.gz
|
||||
NVIM_CONFIG_DIR=$HOME/.config/nvim
|
||||
NVIM_LINK="https://github.com/neovim/neovim/releases/download/v0.6.0/nvim-linux64.tar.gz"
|
||||
NVIM_LINK="https://github.com/neovim/neovim/releases/download/stable/nvim-linux64.tar.gz"
|
||||
if [[ ! -f "$NVIM_DIR/bin/nvim" ]]; then
|
||||
echo "Installing Nvim"
|
||||
echo "Creating nvim directory under tools directory"
|
||||
|
||||
@ -26,4 +26,4 @@ pip install 'python-lsp-server[all]' pylsp-mypy pyls-isort
|
||||
|
||||
# Install neovim nightly
|
||||
scoop bucket add versions
|
||||
scoop install neovim-nightly
|
||||
scoop install neovim
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user