diff --git a/README.md b/README.md index 3d35cb8..7b7cdb4 100755 --- a/README.md +++ b/README.md @@ -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 diff --git a/lua/lz/n/init.lua b/lua/lz/n/init.lua index dec34ed..c1278fb 100644 --- a/lua/lz/n/init.lua +++ b/lua/lz/n/init.lua @@ -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