diff options
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-lsp-installer/health/init.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lua/nvim-lsp-installer/health/init.lua b/lua/nvim-lsp-installer/health/init.lua index 051a3830..4e4192f0 100644 --- a/lua/nvim-lsp-installer/health/init.lua +++ b/lua/nvim-lsp-installer/health/init.lua @@ -112,6 +112,12 @@ end function M.check() health.report_start "nvim-lsp-installer report" + if vim.fn.has "nvim-0.6.0" == 1 then + health.report_ok "neovim version >= 0.6.0" + else + health.report_error "neovim version < 0.6.0" + end + local completed = 0 local check = mk_healthcheck(vim.schedule_wrap( |
