diff options
author | kylo252 <[email protected]> | 2022-10-06 08:55:06 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2022-10-06 06:55:06 +0000 |
commit | 9def60f1dd09ac2244672b8570092229977b43b4 (patch) | |
tree | 44bf396deaa7ce20ebc789f95bd03494d2393488 /lua/lvim/bootstrap.lua | |
parent | 0d578ab152708019ad10cb7b21fc4a1cb0105a1a (diff) |
feat: lock new installations to nvim 0.8+ (#3111)
Diffstat (limited to 'lua/lvim/bootstrap.lua')
-rw-r--r-- | lua/lvim/bootstrap.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/lvim/bootstrap.lua b/lua/lvim/bootstrap.lua index b803cfa6..5d980498 100644 --- a/lua/lvim/bootstrap.lua +++ b/lua/lvim/bootstrap.lua @@ -1,7 +1,7 @@ local M = {} -if vim.fn.has "nvim-0.7" ~= 1 then - vim.notify("Please upgrade your Neovim base installation. Lunarvim requires v0.7+", vim.log.levels.WARN) +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) vim.wait(5000, function() return false end) |