From 20cab1d614b9e1e7c6071536508de9d54509993e Mon Sep 17 00:00:00 2001 From: Mathieu Maret Date: Wed, 19 Jun 2024 23:57:25 +0200 Subject: [PATCH] vim: do not load plugin conf with neovim --- .vimrc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.vimrc b/.vimrc index a1d79e4..e69b5e7 100644 --- a/.vimrc +++ b/.vimrc @@ -473,7 +473,7 @@ set path+=.. " compile with \ll set grepprg=grep\ -nH\ $* let g:tex_flavor = "pdflatex" -imap it Tex_InsertItemOnThisLine +noremap it Tex_InsertItemOnThisLine let g:Tex_DefaultTargetFormat="pdf" if has('gui_running') @@ -573,7 +573,7 @@ augroup END """"""""" " for autotags plugin let g:autotags_pycscope_cmd = '/usr/local/bin/pycscope' - +if !has('nvim') "Using vundle "cf. https://github.com/gmarik/Vundle.vim ":PluginInstall to install them @@ -875,3 +875,4 @@ Plugin 'MattesGroeger/vim-bookmarks' " open file like filename.ext:NUMBER Plugin 'bogado/file-line' call vundle#end() +endif "has(nvim)