Chào mọi người, mình mới chuyển qua Vim gần đây nhưng khi mình xài Vundle để tải color scheme về, đã chạy install rồi nhưng vẫn nhận thông báo
Error detected while processing C:\Users\user\.vimrc:
line 53:
E185: Cannot find color scheme 'gruvbox'
Những lệnh mình nhập
vim
:PluginInstall
:q
vim
File .vimrc của mình:
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>
Mình đã tìm ở StackOverflow rồi nhưng không có cách nào hiệu quả cả.
Có bài này gặp trường hợp giống mình nhưng câu trả lời mình đọc thấy khó hiểu quá.