From 96a6eecead44a80d10b7c93fe1a605ca7bb54153 Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Fri, 9 Aug 2024 01:28:01 +0200 Subject: [PATCH] feat(bootstrap): bump nvim req to 0.11 --- lua/bootstrap.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/bootstrap.lua b/lua/bootstrap.lua index dff6c99..c63ca16 100644 --- a/lua/bootstrap.lua +++ b/lua/bootstrap.lua @@ -1,8 +1,8 @@ local version = vim.version() if version.major == 0 then - if version.minor < 10 then - error("Neovim version 0.10 or above is required with this configuration.") + if version.minor < 11 then + error("Neovim version 0.11 or above is required with this configuration.") end end