Skip to content

Commit 318bd3e

Browse files
committed
fix: update neovim min required version
1 parent e87b728 commit 318bd3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/kickstart/health.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ local check_version = function()
1212
return
1313
end
1414

15-
if vim.version.ge(vim.version(), '0.10-dev') then
15+
if vim.version.ge(vim.version(), '0.11') then
1616
vim.health.ok(string.format("Neovim version is: '%s'", verstr))
1717
else
1818
vim.health.error(string.format("Neovim out of date: '%s'. Upgrade to latest stable or nightly", verstr))

0 commit comments

Comments
 (0)