mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-21 20:11:06 +00:00
feat!: LazyVim now requires Neovim >= 0.11 See #6421 for more info
This commit is contained in:
parent
53a2de1c8b
commit
e7ce65e1bb
1 changed files with 3 additions and 2 deletions
|
|
@ -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({
|
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" },
|
{ "Press any key to exit", "MoreMsg" },
|
||||||
}, true, {})
|
}, true, {})
|
||||||
vim.fn.getchar()
|
vim.fn.getchar()
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue