diff options
| author | Stefano Volpe <volpestefano@outlook.com> | 2023-02-11 21:51:19 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-11 17:51:19 -0300 |
| commit | 73f009df5ed929a853244c413bb52c1d02c117ce (patch) | |
| tree | 449855e455d4a000038e8523a3ff7eea74d6b98f | |
| parent | b9d23a64dc8f22b4af8fa708d9fcbffbbf5747c6 (diff) | |
| download | gruvbox-73f009df5ed929a853244c413bb52c1d02c117ce.tar.gz gruvbox-73f009df5ed929a853244c413bb52c1d02c117ce.tar.xz | |
Fix nvim version check (0.7+ -> 0.8+) (#206)
| -rw-r--r-- | lua/gruvbox/init.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/gruvbox/init.lua b/lua/gruvbox/init.lua index 43dad76..07de0ab 100644 --- a/lua/gruvbox/init.lua +++ b/lua/gruvbox/init.lua @@ -24,8 +24,8 @@ function M.setup(config) end M.load = function() - if vim.version().minor < 7 then - vim.notify_once("gruvbox.nvim: you must use neovim 0.7 or higher") + if vim.version().minor < 8 then + vim.notify_once("gruvbox.nvim: you must use neovim 0.8 or higher") return end |
