diff options
author | opalmay <[email protected]> | 2023-02-17 13:40:41 +0200 |
---|---|---|
committer | opalmay <[email protected]> | 2023-02-17 13:40:41 +0200 |
commit | c1325498a231434fc0c30a4defd4eb14beb82b1f (patch) | |
tree | 9d0d418e12ec9829db46ff3d8150899130f58801 /utils | |
parent | ddc86f3a8aaa1afd36cf8f1a46a29a57922efc8a (diff) |
feat: lock new installations to nvim 0.9+
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/installer/install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/installer/install.sh b/utils/installer/install.sh index e55e7214..22a4ef7a 100755 --- a/utils/installer/install.sh +++ b/utils/installer/install.sh @@ -213,11 +213,11 @@ function print_missing_dep_msg() { } function check_neovim_min_version() { - local verify_version_cmd='if !has("nvim-0.8") | cquit | else | quit | endif' + local verify_version_cmd='if !has("nvim-0.9") | cquit | else | quit | endif' # exit with an error if min_version not found if ! nvim --headless -u NONE -c "$verify_version_cmd"; then - echo "[ERROR]: LunarVim requires at least Neovim v0.8 or higher" + echo "[ERROR]: LunarVim requires at least Neovim v0.9 or higher" exit 1 fi } |