mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-11-01 12:26:35 +00:00
0d8261b924
That's now minimum version for my Lua configs. 0.5 can use vimscript.
9 lines
148 B
VimL
9 lines
148 B
VimL
" Maybe load init.lua
|
|
if has('nvim-0.6')
|
|
lua require('init')
|
|
else
|
|
set runtimepath+='~/.vim'
|
|
source ~/.vim/autoload/*
|
|
source ~/.vim/init.vim
|
|
end
|