summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/ISSUE_TEMPLATE/general-issue-form.yaml4
-rw-r--r--.github/ISSUE_TEMPLATE/lsp-issue-form.yaml4
-rw-r--r--README.md2
-rw-r--r--lua/lvim/bootstrap.lua4
-rwxr-xr-xutils/installer/install.sh4
5 files changed, 9 insertions, 9 deletions
diff --git a/.github/ISSUE_TEMPLATE/general-issue-form.yaml b/.github/ISSUE_TEMPLATE/general-issue-form.yaml
index 56fbc1dc..fed53efe 100644
--- a/.github/ISSUE_TEMPLATE/general-issue-form.yaml
+++ b/.github/ISSUE_TEMPLATE/general-issue-form.yaml
@@ -33,10 +33,10 @@ body:
- type: input
id: nvim-version
attributes:
- label: Neovim version (>= 0.6)
+ label: Neovim version (>= 0.6.1)
description: "Output of `nvim --version`"
placeholder: |
- NVIM v0.6.0-dev+209-g0603eba6e
+ NVIM v0.7-dev+209-g0603eba6e
Build type: Release
LuaJIT 2.1.0-beta3
validations:
diff --git a/.github/ISSUE_TEMPLATE/lsp-issue-form.yaml b/.github/ISSUE_TEMPLATE/lsp-issue-form.yaml
index c0743651..6c6d3235 100644
--- a/.github/ISSUE_TEMPLATE/lsp-issue-form.yaml
+++ b/.github/ISSUE_TEMPLATE/lsp-issue-form.yaml
@@ -27,10 +27,10 @@ body:
- type: input
id: nvim-version
attributes:
- label: Neovim version (>= 0.6)
+ label: Neovim version (>= 0.6.1)
description: "Output of `nvim --version`"
placeholder: |
- NVIM v0.6.0-dev+209-g0603eba6e
+ NVIM v0.7-dev+209-g0603eba6e
Build type: Release
LuaJIT 2.1.0-beta3
validations:
diff --git a/README.md b/README.md
index 97edf237..c7dd1b74 100644
--- a/README.md
+++ b/README.md
@@ -26,7 +26,7 @@ You can find all the documentation for LunarVim at [lunarvim.org](https://www.lu
## Install In One Command!
-Make sure you have the release version of Neovim (0.6).
+Make sure you have the release version of Neovim (0.6.1+).
```bash
bash <(curl -s https://raw.githubusercontent.com/lunarvim/lunarvim/master/utils/installer/install.sh)
diff --git a/lua/lvim/bootstrap.lua b/lua/lvim/bootstrap.lua
index 2300c753..c324055a 100644
--- a/lua/lvim/bootstrap.lua
+++ b/lua/lvim/bootstrap.lua
@@ -1,7 +1,7 @@
local M = {}
-if vim.fn.has "nvim-0.6" ~= 1 then
- vim.notify("Please upgrade your Neovim base installation. Lunarvim requires v0.6+", vim.log.levels.WARN)
+if vim.fn.has "nvim-0.6.1" ~= 1 then
+ vim.notify("Please upgrade your Neovim base installation. Lunarvim requires v0.6.1+", vim.log.levels.WARN)
vim.wait(5000, function()
return false
end)
diff --git a/utils/installer/install.sh b/utils/installer/install.sh
index c30f2efe..309b8fdc 100755
--- a/utils/installer/install.sh
+++ b/utils/installer/install.sh
@@ -171,11 +171,11 @@ function print_missing_dep_msg() {
}
function check_neovim_min_version() {
- local verify_version_cmd='if !has("nvim-0.6.0") | cquit | else | quit | endif'
+ local verify_version_cmd='if !has("nvim-0.6.1") | cquit | else | quit | endif'
# exit with an error if min_version not found
if ! nvim --headless -u NONE -c "$verify_version_cmd"; then
- echo "[ERROR]: LunarVim requires at least Neovim v0.6.0 or higher"
+ echo "[ERROR]: LunarVim requires at least Neovim v0.6.1 or higher"
exit 1
fi
}