Not sure whos OP, but I am sorry that I can't help with installing the LaTeX-Vim plugin in vim in iTerm2. I neither use the plugin nor the terminal. I have had no problems installing plugins with vimplug as a plugin manager. Here's my .vimrc plugin config
" Auto install vimplug (checks if vimplug is installed, if not then it will install it)
"
https://github.com/junegunn/vim-plugif empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
endif
" Plugins installed
call plug#begin()
Plug '
https://github.com/vifm/vifm.vim'
"LaTeX stuff
"Plug 'lervag/vimtex', { 'on': [] }
"Plug 'KeitaNakamura/tex-conceal.vim', {'for': 'tex', 'on': []}
Plug 'sirver/ultisnips'
call plug#end()
" How to install new plugins:
" 1) Add the plugin to the list, save and reload .vimrc.
" 2) Run command ':PlugInstall'
Not sure if it helps.
" Auto install vimplug (checks if vimplug is installed, if not then it will install it)
"
https://github.com/junegunn/vim-plugif empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
endif
" Plugins installed
call plug#begin()
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug '
https://github.com/vifm/vifm.vim'
"LaTeX stuff
"Plug 'lervag/vimtex', { 'on': [] }
"Plug 'KeitaNakamura/tex-conceal.vim', {'for': 'tex', 'on': []}
Plug 'sirver/ultisnips'
call plug#end()
" How to install new plugins:
" 1) Add the plugin to the list, save and reload .vimrc.
" 2) Run command ':PlugInstall'
Not sure if it helps.