Vim onedark Colorscheme не загружается, но существует - PullRequest
0 голосов
/ 03 июня 2018

В настоящее время я использую Iterm2 и Vim 7.4 с минималистским менеджером плагинов Vim.При открытии файла через Vim я получаю сообщение об ошибке:

Error detected while processing MYDIRECTORY/.vimrc:
line 19:
E185: Cannot find color scheme 'onedark'
Press ENTER or type command to continue

Тема onedark не загружается, но если в Vim я набираю :colorscheme onedark, она отлично загружается.

Мой .vimrc выглядит следующим образом:

set t_Co=256
set autoindent
set mouse=a
set number
set shiftwidth=0
set tabstop=4

"let g:airline_theme='onedark'

"Use 24-bit (true-color) mode in Vim/Neovim when outside tmux."
if (has("nvim"))
let $NVIM_TUI_ENABLE_TRUE_COLOR=1
endif
if (has("termguicolors"))
set termguicolors
endif

set background=dark
colorscheme onedark
syntax on

call plug#begin('~/.vim/plugged')

"Make sure you use single quotes

"ATOM Text Editor Default Syntax Theme"
Plug 'https://github.com/joshdick/onedark.vim.git'

"Shorthand notation; fetches https://github.com/junegunn/vim-easy-align
Plug 'junegunn/vim-easy-align'

"Any valid git URL is allowed
Plug 'https://github.com/junegunn/vim-github-dashboard.git'

"Multiple Plug commands can be written in a single line using |
"separators
Plug 'SirVer/ultisnips' | Plug 'honza/vim-snippets'

"On-demand loading
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Plug 'tpope/vim-fireplace', { 'for': 'clojure' }

"Using a non-master branch
Plug 'rdnetto/YCM-Generator', { 'branch': 'stable' }

"Using a tagged release; wildcard allowed (requires git 1.9.2 or
"above)
Plug 'fatih/vim-go', { 'tag': '*' }

"Plugin options
Plug 'nsf/gocode', { 'tag': 'v.20150303', 'rtp': 'vim' }

"Plugin outside /.vim/plugged with post-update hook
Plug 'junegunn/fzf', { 'dir': '/.fzf', 'do': './install --all' }

Plug 'https://github.com/exvim/ex-autocomplpop'

"Initialize plugin system
call plug#end()

Что мне делать?

1 Ответ

0 голосов
/ 03 июня 2018

Способ работы vim-plug заключается в следующем:

call plug#begin('~/.vim/plugged')

создает набор функций / команд и устанавливает набор параметров,

Plug 'https://github.com/joshdick/onedark.vim.git'

добавляет этот ресурс во внутреннийlist,

call plug#end()

фактически устанавливает все ваши плагины в ~/.vim/plugged, если их там нет, и устанавливает :help 'runtimepath' на правильное значение, которое сообщает Vim, где искать плагины.

В общем, вы не можете ожидать, что плагин, установленный vim-plug, будет доступен до того, как vim-plug сделает свое волшебство.

Перемещение colorscheme onedark ниже call plug#end() должен решить вашу проблему.

...