From f65d25e496a72423359de58c954aa005ab5086ae Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Mon, 13 May 2024 22:28:34 +0000 Subject: [PATCH] Update init.vim to only load plugins on nvim >=0.8 --- configs/nvim/init.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/nvim/init.vim b/configs/nvim/init.vim index 7c0a93a..c760852 100644 --- a/configs/nvim/init.vim +++ b/configs/nvim/init.vim @@ -28,7 +28,7 @@ if !exists('g:vscode') endif " 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 lua require('leap').add_default_mappings()