1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

check if nvim version is correct, see also #51

This commit is contained in:
jdhao 2022-05-09 22:05:41 +08:00
parent 6cea10fcc5
commit 13111596b8

View File

@ -8,6 +8,12 @@
" Email: jdhao@hotmail.com
" Blog: https://jdhao.github.io/
" check if we have the lastest stable version of nvim
if !has('nvim-0.7.0')
echohl Error | echomsg "Nvim 0.7.0 required, but is missing!" | echohl None
finish
endif
let s:core_conf_files = [
\ 'globals.vim',
\ 'options.vim',