mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-13 14:42:16 +02:00
Raise the minimum nvim version to 0.11
This commit is contained in:
parent
3338d39206
commit
cc1a4d7cc6
2 changed files with 3 additions and 16 deletions
|
@ -12,7 +12,7 @@ local check_version = function()
|
|||
return
|
||||
end
|
||||
|
||||
if vim.version.ge(vim.version(), '0.10-dev') then
|
||||
if vim.version.ge(vim.version(), '0.11') then
|
||||
vim.health.ok(string.format("Neovim version is: '%s'", verstr))
|
||||
else
|
||||
vim.health.error(string.format("Neovim out of date: '%s'. Upgrade to latest stable or nightly", verstr))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue