vim: do not load plugin conf with neovim

This commit is contained in:
Mathieu Maret 2024-06-19 23:57:25 +02:00
parent b11ccc1c25
commit 20cab1d614

5
.vimrc
View File

@ -473,7 +473,7 @@ set path+=..
" compile with \ll " compile with \ll
set grepprg=grep\ -nH\ $* set grepprg=grep\ -nH\ $*
let g:tex_flavor = "pdflatex" let g:tex_flavor = "pdflatex"
imap <buffer> <leader>it <Plug>Tex_InsertItemOnThisLine noremap <buffer> <leader>it <Plug>Tex_InsertItemOnThisLine
let g:Tex_DefaultTargetFormat="pdf" let g:Tex_DefaultTargetFormat="pdf"
if has('gui_running') if has('gui_running')
@ -573,7 +573,7 @@ augroup END
""""""""" """""""""
" for autotags plugin " for autotags plugin
let g:autotags_pycscope_cmd = '/usr/local/bin/pycscope' let g:autotags_pycscope_cmd = '/usr/local/bin/pycscope'
if !has('nvim')
"Using vundle "Using vundle
"cf. https://github.com/gmarik/Vundle.vim "cf. https://github.com/gmarik/Vundle.vim
":PluginInstall to install them ":PluginInstall to install them
@ -875,3 +875,4 @@ Plugin 'MattesGroeger/vim-bookmarks'
" open file like filename.ext:NUMBER " open file like filename.ext:NUMBER
Plugin 'bogado/file-line' Plugin 'bogado/file-line'
call vundle#end() call vundle#end()
endif "has(nvim)