VIM当前未读取.vimrc

时间:2019-01-27 17:49:26

标签: linux ubuntu vim

最近我已经在Ubuntu 18.10上安装了VIM 8.0。安装后,我将按照https://github.com/VundleVim/Vundle.vim的步骤来准备我的VIM插件管理器。

我想为VIM保存插件,其中有一个目录~/.vim和一个子目录~/.vim/bundle。除此之外,还有.vimrc文件(~/.vim)和vundle.vim(~/.vim/bundle)。

我对.vimrc

进行了以下设置
set nocompatible              " be iMproved, required
filetype off                  " required
set number

" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')

" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'

" The following are examples of different formats supported.
" Keep Plugin commands between vundle#begin/end.
" plugin on GitHub repo
Plugin 'tpope/vim-fugitive'
" plugin from http://vim-scripts.org/vim/scripts.html
" Plugin 'L9'
" Git plugin not hosted on GitHub
Plugin 'git://git.wincent.com/command-t.git'
" git repos on your local machine (i.e. when working on your own plugin)
Plugin 'file:///home/gmarik/path/to/plugin'
" The sparkup vim script is in a subdirectory of this repo called vim.
" Pass the path to set the runtimepath properly.
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
" Install L9 and avoid a Naming conflict if you've already installed a
" different version somewhere else.
" Plugin 'ascenator/L9', {'name': 'newL9'}

" All of your Plugins must be added before the following line
call vundle#end()            " required
filetype plugin indent on    " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
"
" Brief help
" :PluginList       - lists configured plugins
" :PluginInstall    - installs plugins; append `!` to update or just :PluginUpdate
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
" :PluginClean      - confirms removal of unused plugins; append `!` to auto-approve removal
"
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line

当我尝试通过:PlugInstall:PluginInstall安装插件时,vim告诉我没有那些命令。我注意到set number的基本设置无法正常运行。

经过大量研究,我检查:scriptnames时是否检查过

  1: /usr/share/vim/vimrc
  2: /usr/share/vim/vim80/debian.vim
  3: /usr/share/vim/vim80/syntax/syntax.vim
  4: /usr/share/vim/vim80/syntax/synload.vim
  5: /usr/share/vim/vim80/syntax/syncolor.vim
  6: /usr/share/vim/vim80/filetype.vim
  7: ~/.vimrc
  8: /usr/share/vim/vim80/syntax/nosyntax.vim
  9: /usr/share/vim/vim80/plugin/getscriptPlugin.vim
 10: /usr/share/vim/vim80/plugin/gzip.vim
 11: /usr/share/vim/vim80/plugin/logiPat.vim
 12: /usr/share/vim/vim80/plugin/manpager.vim
 13: /usr/share/vim/vim80/plugin/matchparen.vim
 14: /usr/share/vim/vim80/plugin/netrwPlugin.vim
 15: /usr/share/vim/vim80/plugin/rrhelper.vim
 16: /usr/share/vim/vim80/plugin/spellfile.vim
 17: /usr/share/vim/vim80/plugin/tarPlugin.vim
 18: /usr/share/vim/vim80/plugin/tohtml.vim
 19: /usr/share/vim/vim80/plugin/vimballPlugin.vim
 20: /usr/share/vim/vim80/plugin/zipPlugin.vim
 21: /usr/share/vim/vim80/scripts.vim
 22: /usr/share/vim/vim80/syntax/vim.vim
 23: /usr/share/vim/vim80/syntax/lua.vim
 24: /usr/share/vim/vim80/syntax/perl.vim
 25: /usr/share/vim/vim80/syntax/pod.vim
 26: /usr/share/vim/vim80/syntax/ruby.vim
 27: /usr/share/vim/vim80/syntax/python.vim

在我看来,vim正在检查.vimrc

我也尝试过:set runtimepath

runtimepath=~/.vim,/var/lib/vim/addons,/usr/share/vim/vimfiles,/usr/share/vim/vim80,/usr/share/vim/vimfiles/after,/var/lib/vim/addons/after,~/.vim/after

再次显示出~/.vim的路径。

我怀疑这可能是vundle.vim~/.vim/bundle)或其他方面的问题。

有人可以帮助我吗?

1 个答案:

答案 0 :(得分:3)

这听起来好像是您将.vimrc配置放入错误的目录(~/.vim/)中一样。

请尝试将.vimrc文件直接放入您的主目录。

运行以下命令后,我能够成功运行:PluginInstall命令:

vim ~/.vimrc          # (Insert vim configuration)
mkdir -p ~/.vim/bundle/
cd ~/.vim/bundle/
git clone https://github.com/VundleVim/Vundle.vim