chore: bump minimum Nvim version to 0.10.0

This commit is contained in:
Marc Jakobi
2024-06-10 13:59:01 +02:00
parent c6545f8379
commit 5c03f32b1e
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ but reduced down to the very basics required for lazy-loading only.
## :pencil: Requirements
- `Neovim >= 0.9.1`
- `Neovim >= 0.10.0`
## :books: Usage
+2 -2
View File
@@ -2,8 +2,8 @@
local M = {}
if vim.fn.has("nvim-0.9.1") ~= 1 then
error("lz.n requires Neovim >= 0.9.1")
if vim.fn.has("nvim-0.10.0") ~= 1 then
error("lz.n requires Neovim >= 0.10.0")
end
---@param spec string | lz.n.Spec