diff options
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/mason/health.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/mason/health.lua b/lua/mason/health.lua index 42e5f4bd..5c54b1b3 100644 --- a/lua/mason/health.lua +++ b/lua/mason/health.lua @@ -81,10 +81,10 @@ local function check_registries() end local function check_neovim() - if vim.fn.has "nvim-0.9.0" == 1 then - report_ok "neovim version >= 0.9.0" + if vim.fn.has "nvim-0.10.0" == 1 then + report_ok "neovim version >= 0.10.0" else - report_error("neovim version < 0.9.0", { "Upgrade Neovim." }) + report_error("neovim version < 0.10.0", { "Upgrade Neovim." }) end end |
