aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2025-02-19 08:36:37 +0100
committerWilliam Boman <william@redwill.se>2025-02-19 12:15:49 +0100
commit8dadbd63e27d90548d1bd545ac84bbaf00ae61a4 (patch)
tree0e7ee90cacc5feba6f6fe5148661bb4ebd89d212 /lua
parentfeat(context): add ctx:await() (diff)
downloadmason-8dadbd63e27d90548d1bd545ac84bbaf00ae61a4.tar
mason-8dadbd63e27d90548d1bd545ac84bbaf00ae61a4.tar.gz
mason-8dadbd63e27d90548d1bd545ac84bbaf00ae61a4.tar.bz2
mason-8dadbd63e27d90548d1bd545ac84bbaf00ae61a4.tar.lz
mason-8dadbd63e27d90548d1bd545ac84bbaf00ae61a4.tar.xz
mason-8dadbd63e27d90548d1bd545ac84bbaf00ae61a4.tar.zst
mason-8dadbd63e27d90548d1bd545ac84bbaf00ae61a4.zip
chore!: update required Neovim version to 0.10.0
Diffstat (limited to 'lua')
-rw-r--r--lua/mason/health.lua6
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