1

Update init.vim to only load plugins on nvim >=0.8

This commit is contained in:
Evan Pratten 2024-05-13 22:28:34 +00:00
parent 1de2f43b0e
commit f65d25e496

View File

@ -28,7 +28,7 @@ if !exists('g:vscode')
endif endif
" Don't bother loading plugins if we are on a really old NeoVim installation " Don't bother loading plugins if we are on a really old NeoVim installation
if has('nvim-0.5') if has('nvim-0.8')
" Enable Leap " Enable Leap
lua require('leap').add_default_mappings() lua require('leap').add_default_mappings()