mirror of https://github.com/folke/neoconf.nvim
fix(health): lazydev.nvim instead of neodev.nvim (#96)
## Description healthcheck checks for neodev.nvim which is archived and replaced by lazydev.nvim. ## Related Issue(s) ## Screenshots
This commit is contained in:
parent
1a8eb5dcc2
commit
605cf4f9aa
|
|
@ -32,9 +32,13 @@ function M.check()
|
||||||
end
|
end
|
||||||
|
|
||||||
if pcall(require, "neodev") then
|
if pcall(require, "neodev") then
|
||||||
ok("**neodev.nvim** is installed")
|
warn("**neodev.nvim** is installed. lazydev.nvim is a much faster and better replacement for neodev")
|
||||||
|
end
|
||||||
|
|
||||||
|
if pcall(require, "lazydev") then
|
||||||
|
ok("**lazydev.nvim** is installed")
|
||||||
else
|
else
|
||||||
warn("**neodev.nvim** is not installed. You won't get any proper completion for your Neovim config.")
|
warn("**lazydev.nvim** is not installed. You won't get any proper completion for your Neovim config.")
|
||||||
end
|
end
|
||||||
|
|
||||||
local _, lspconfig = pcall(require, "lspconfig.util")
|
local _, lspconfig = pcall(require, "lspconfig.util")
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue