feat!: LazyVim now requires Neovim >= 0.11 See #6421 for more info

This commit is contained in:
Folke Lemaitre
2025-09-15 10:58:22 +02:00
parent 53a2de1c8b
commit e7ce65e1bb

View File

@@ -1,6 +1,7 @@
if vim.fn.has("nvim-0.9.0") == 0 then
if vim.fn.has("nvim-0.11.0") == 0 then
vim.api.nvim_echo({
{ "LazyVim requires Neovim >= 0.9.0\n", "ErrorMsg" },
{ "LazyVim requires Neovim >= 0.11.0\n", "ErrorMsg" },
{ "For more info, see: https://github.com/LazyVim/LazyVim/issues/6421\n", "Comment" },
{ "Press any key to exit", "MoreMsg" },
}, true, {})
vim.fn.getchar()