summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/ISSUE_TEMPLATE/general-issue-form.yaml2
-rw-r--r--.github/ISSUE_TEMPLATE/lsp-issue-form.yaml2
-rw-r--r--.github/workflows/install.yaml2
-rw-r--r--.github/workflows/plugins.yml2
-rw-r--r--README.md2
-rw-r--r--lua/lvim/plugins.lua1
-rw-r--r--utils/installer/install.ps12
-rwxr-xr-xutils/installer/install.sh4
8 files changed, 8 insertions, 9 deletions
diff --git a/.github/ISSUE_TEMPLATE/general-issue-form.yaml b/.github/ISSUE_TEMPLATE/general-issue-form.yaml
index fed53efe..fcf22684 100644
--- a/.github/ISSUE_TEMPLATE/general-issue-form.yaml
+++ b/.github/ISSUE_TEMPLATE/general-issue-form.yaml
@@ -33,7 +33,7 @@ body:
- type: input
id: nvim-version
attributes:
- label: Neovim version (>= 0.6.1)
+ label: Neovim version (>= 0.7)
description: "Output of `nvim --version`"
placeholder: |
NVIM v0.7-dev+209-g0603eba6e
diff --git a/.github/ISSUE_TEMPLATE/lsp-issue-form.yaml b/.github/ISSUE_TEMPLATE/lsp-issue-form.yaml
index 6c6d3235..6b326b26 100644
--- a/.github/ISSUE_TEMPLATE/lsp-issue-form.yaml
+++ b/.github/ISSUE_TEMPLATE/lsp-issue-form.yaml
@@ -27,7 +27,7 @@ body:
- type: input
id: nvim-version
attributes:
- label: Neovim version (>= 0.6.1)
+ label: Neovim version (>= 0.7)
description: "Output of `nvim --version`"
placeholder: |
NVIM v0.7-dev+209-g0603eba6e
diff --git a/.github/workflows/install.yaml b/.github/workflows/install.yaml
index 54da94bc..51336ed9 100644
--- a/.github/workflows/install.yaml
+++ b/.github/workflows/install.yaml
@@ -57,7 +57,7 @@ jobs:
uses: rhysd/action-setup-vim@v1
with:
neovim: true
- version: v0.6.1
+ version: v0.7.0
- name: Install LunarVim
timeout-minutes: 4
diff --git a/.github/workflows/plugins.yml b/.github/workflows/plugins.yml
index ba16ddca..d84c6b36 100644
--- a/.github/workflows/plugins.yml
+++ b/.github/workflows/plugins.yml
@@ -33,7 +33,7 @@ jobs:
uses: rhysd/action-setup-vim@v1
with:
neovim: true
- version: v0.6.1
+ version: v0.7
- name: Install LunarVim
timeout-minutes: 4
diff --git a/README.md b/README.md
index 30917c75..ec4f1c55 100644
--- a/README.md
+++ b/README.md
@@ -29,7 +29,7 @@
## Install In One Command!
-Make sure you have the release version of Neovim (0.6.1+).
+Make sure you have the release version of Neovim (0.7+).
### Linux:
diff --git a/lua/lvim/plugins.lua b/lua/lvim/plugins.lua
index f3b4d7c6..1b885a09 100644
--- a/lua/lvim/plugins.lua
+++ b/lua/lvim/plugins.lua
@@ -114,7 +114,6 @@ local core_plugins = {
-- Treesitter
{
"nvim-treesitter/nvim-treesitter",
- branch = vim.fn.has "nvim-0.6" == 1 and "master" or "0.5-compat",
-- run = ":TSUpdate",
config = function()
require("lvim.core.treesitter").setup()
diff --git a/utils/installer/install.ps1 b/utils/installer/install.ps1
index 182e7bac..31f862f3 100644
--- a/utils/installer/install.ps1
+++ b/utils/installer/install.ps1
@@ -82,7 +82,7 @@ function print_missing_dep_msg($dep) {
Write-Output "Please install it first and re-run the installer."
}
-$winget_package_matrix=@{"git" = "Git.Git"; "nvim" = "nvim.nvim"; "make" = "GnuWin32.Make"; "node" = "OpenJS.NodeJS"; "pip" = "Python.Python.3"}
+$winget_package_matrix=@{"git" = "Git.Git"; "nvim" = "Neovim.Neovim"; "make" = "GnuWin32.Make"; "node" = "OpenJS.NodeJS"; "pip" = "Python.Python.3"}
$scoop_package_matrix=@{"git" = "git"; "nvim" = "neovim-nightly"; "make" = "make"; "node" = "nodejs"; "pip" = "python3"}
function install_system_package($dep) {
diff --git a/utils/installer/install.sh b/utils/installer/install.sh
index 0d56fe30..66149cf6 100755
--- a/utils/installer/install.sh
+++ b/utils/installer/install.sh
@@ -197,11 +197,11 @@ function print_missing_dep_msg() {
}
function check_neovim_min_version() {
- local verify_version_cmd='if !has("nvim-0.6.1") | cquit | else | quit | endif'
+ local verify_version_cmd='if !has("nvim-0.7") | 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.1 or higher"
+ echo "[ERROR]: LunarVim requires at least Neovim v0.7 or higher"
exit 1
fi
}