diff options
author | kylo252 <[email protected]> | 2022-10-06 08:55:06 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2022-10-06 06:55:06 +0000 |
commit | 9def60f1dd09ac2244672b8570092229977b43b4 (patch) | |
tree | 44bf396deaa7ce20ebc789f95bd03494d2393488 /lua/lvim/utils | |
parent | 0d578ab152708019ad10cb7b21fc4a1cb0105a1a (diff) |
feat: lock new installations to nvim 0.8+ (#3111)
Diffstat (limited to 'lua/lvim/utils')
-rw-r--r-- | lua/lvim/utils/hooks.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/lvim/utils/hooks.lua b/lua/lvim/utils/hooks.lua index 4101c573..ce4335a9 100644 --- a/lua/lvim/utils/hooks.lua +++ b/lua/lvim/utils/hooks.lua @@ -52,8 +52,8 @@ end function M.run_post_update() Log:debug "Starting post-update hook" - if vim.fn.has "nvim-0.7" ~= 1 then - local compat_tag = "1.1.3" + if vim.fn.has "nvim-0.8" ~= 1 then + local compat_tag = "1.1.4" vim.notify( "Please upgrade your Neovim base installation. Newer version of Lunarvim requires v0.7+", vim.log.levels.WARN |