Skip to content

Commit

Permalink
fix: fixed health text
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Nov 16, 2022
1 parent 8b95ab6 commit 68ea264
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lua/neoconf/health.lua
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ function M.check()
warn("**treesitter-nvim** not installed. Highlighting of jsonc files might be broken")
end

if pcall(require, "lspconfig.util") then
ok("**lua-dev.nvim** is installed")
if pcall(require, "neodev") then
ok("**neodev.nvim** is installed")
else
warn("**lua-dev.nvim** is not installed. You won't get any proper completion for your Neovim config.")
warn("**neodev.nvim** is not installed. You won't get any proper completion for your Neovim config.")
end

local _, lspconfig = pcall(require, "lspconfig.util")
Expand Down

0 comments on commit 68ea264

Please sign in to comment.