mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-21 16:39:06 +02:00
perf(plugin): move all lazy.nvim related code to lazyvim.util.plugin
This commit is contained in:
parent
f1a8f24a36
commit
70f91956e7
4 changed files with 183 additions and 178 deletions
|
@ -1,3 +1,13 @@
|
|||
if vim.fn.has("nvim-0.9.0") == 0 then
|
||||
vim.api.nvim_echo({
|
||||
{ "LazyVim requires Neovim >= 0.9.0\n", "ErrorMsg" },
|
||||
{ "Press any key to exit", "MoreMsg" },
|
||||
}, true, {})
|
||||
vim.fn.getchar()
|
||||
vim.cmd([[quit]])
|
||||
return {}
|
||||
end
|
||||
|
||||
require("lazyvim.config").init()
|
||||
|
||||
return {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue