diff options
| author | William Boman <william@redwill.se> | 2023-10-11 15:23:52 +0200 |
|---|---|---|
| committer | William Boman <william@redwill.se> | 2025-02-16 09:49:17 +0100 |
| commit | 853fccd32a4077b8272fd7dd379b80559e897d19 (patch) | |
| tree | 722df2547d1281552b369458b619f4753c2c7564 /lua | |
| parent | fix(installer): schedule back to main loop before executing installer functio... (diff) | |
| download | mason-853fccd32a4077b8272fd7dd379b80559e897d19.tar mason-853fccd32a4077b8272fd7dd379b80559e897d19.tar.gz mason-853fccd32a4077b8272fd7dd379b80559e897d19.tar.bz2 mason-853fccd32a4077b8272fd7dd379b80559e897d19.tar.lz mason-853fccd32a4077b8272fd7dd379b80559e897d19.tar.xz mason-853fccd32a4077b8272fd7dd379b80559e897d19.tar.zst mason-853fccd32a4077b8272fd7dd379b80559e897d19.zip | |
feat!: upgrade minimum required neovim version to 0.9.0 (#1517)
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 b8680ad4..f12ac811 100644 --- a/lua/mason/health.lua +++ b/lua/mason/health.lua @@ -120,10 +120,10 @@ local function check_github() end local function check_neovim() - if vim.fn.has "nvim-0.7.0" == 1 then - report_ok "neovim version >= 0.7.0" + if vim.fn.has "nvim-0.9.0" == 1 then + report_ok "neovim version >= 0.9.0" else - report_error("neovim version < 0.7.0", { "Upgrade Neovim." }) + report_error("neovim version < 0.9.0", { "Upgrade Neovim." }) end end |
