From 318bd3e65c1bd1b4f55e179b87c073191746b272 Mon Sep 17 00:00:00 2001 From: TJ DeVries Date: Tue, 27 Jan 2026 10:42:05 -0500 Subject: [PATCH] fix: update neovim min required version --- lua/kickstart/health.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/kickstart/health.lua b/lua/kickstart/health.lua index b59d0864..ca684516 100644 --- a/lua/kickstart/health.lua +++ b/lua/kickstart/health.lua @@ -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))