我已经安装了 Vundle 和一些插件。但是,插件仅在我运行:PluginInstall
或:PluginList
在 vim 中激活后才会激活。
$ vim
带我到一个
没有任何插件的普通 vim 。
一旦我运行,:PluginInstall
我就会看到这样的多窗格 vim:
multi pane vim with plugins
请注意,插件 LightLine 已安装。另请注意,一旦我切换到最右侧的窗格,就会出现两个 vim 状态栏:一个 LightLine 状态栏和普通的 --INSERT-- 状态栏。这让我觉得我在 vim 中以某种方式运行 vim ......
我的 .vimrc 供参考
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'itchyny/lightline.vim'
Plugin 'jiangmiao/auto-pairs'
call vundle#end()
"set rtp+=/usr/local/opt/fzf
"nnoremap > $
"nnoremap < 0
"set autoindent
"set smartindent
filetype plugin indent on
syntax on
" Language specific syntax
" autocmd FileType * set tabstop=2|set shiftwidth=2|set expandtab
" autocmd FileType python set tabstop=4|set shiftwidth=4|set expandtab
我正在使用安装了 Vim 8.1 的自制软件,这是:set runtimepath
runtimepath=~/.vim,~/.vim/bundle/Vundle.vim,~/.vim/bundle/lightline.vim,~/.vim/bundle/auto-pairs,/usr/local/share/vim/vimfiles,/usr/local/share/vim/vim81,/usr/local/share/vim/vimfiles/after,~/.vim/after,~/.vim/bundle/Vundle.vim,~/.vim/bundle/Vundle.vim/after,~/.vim/bundle/lightline.vim/after,~/.vim/bundle/auto-pairs/after
知道为什么 vim 会这样吗?