gpt4 book ai didi

Vim 找不到 Vundle 安装的颜色方案

转载 作者:行者123 更新时间:2023-12-04 17:44:44 36 4
gpt4 key购买 nike

我试图通过 Vundle 安装 gruvbox colourscheme,但是当我运行 vim 时。出现了这样的错误:

Error detected while processing C:\Users\user\.vimrc:

line 53:

E185: Cannot find color scheme 'gruvbox'

我在 Stack Overflow 上到处搜索并尝试了所有方法,但都没有奏效。你能帮我解决这个问题吗?

这是我运行的命令:
vim
:PluginInstall
:q
vim <-- This is where I got the error

我的.vimrc:
set nocompatible          
filetype off

set rtp+=$HOME/.vim/bundle/Vundle.vim/
call vundle#begin('$HOME/.vim/bundle/')

Plugin 'VundleVim/Vundle.vim'

Plugin 'tpope/vim-fugitive'
Plugin 'file:///home/gmarik/path/to/plugin'
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}

Plugin 'morhetz/gruvbox'


call vundle#end()
filetype plugin indent on

syntax enable
set background=dark
colorscheme gruvbox
set tabstop=4
set softtabstop=4
set expandtab
set number
set showcmd
set cursorline
filetype indent on
set wildmenu
set lazyredraw
set showmatch
set incsearch
set hlsearch
nnoremap <leader><space> :nohlsearch<CR>

最佳答案

您需要更改 .vimrc 的第 11 行到

Bundle 'rstacruz/sparkup', {'rtp': 'vim'} 

https://github.com/VundleVim/Vundle.vim/wiki/Vundle-for-Windows#trailing-slash-issue 所述vimrc 中的尾部斜杠导致无效 runtimepath这会导致所有插件加载失败

关于Vim 找不到 Vundle 安装的颜色方案,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52665947/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com