1
0
Fork 0

nvim: add old version warning

This commit is contained in:
tastytea 2022-08-13 19:10:19 +02:00
parent b32a7163b9
commit 686871a6a1
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
1 changed files with 4 additions and 0 deletions

View File

@ -1,3 +1,7 @@
if vim.fn.has('nvim-0.7.0') == 0 then
print("Old version detected. Some stuff will probably not work.")
end
require('my/plugins')
require('my/functions')
require('my/settings')