From c1325498a231434fc0c30a4defd4eb14beb82b1f Mon Sep 17 00:00:00 2001 From: opalmay Date: Fri, 17 Feb 2023 13:40:41 +0200 Subject: feat: lock new installations to nvim 0.9+ --- lua/lvim/bootstrap.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lua/lvim/bootstrap.lua') diff --git a/lua/lvim/bootstrap.lua b/lua/lvim/bootstrap.lua index a2a97cea..a5eb1c17 100644 --- a/lua/lvim/bootstrap.lua +++ b/lua/lvim/bootstrap.lua @@ -1,7 +1,7 @@ local M = {} -if vim.fn.has "nvim-0.8" ~= 1 then - vim.notify("Please upgrade your Neovim base installation. Lunarvim requires v0.8+", vim.log.levels.WARN) +if vim.fn.has "nvim-0.9" ~= 1 then + vim.notify("Please upgrade your Neovim base installation. Lunarvim requires v0.9+", vim.log.levels.WARN) vim.wait(5000, function() ---@diagnostic disable-next-line: redundant-return-value return false -- cgit v1.2.3