0 vim plugins color-scheme vim-plugin iterm2
我目前将 Iterm2 和 Vim 7.4 与 Minimalist Vim Plugin Manager 一起使用。通过 Vim 打开文件时,出现错误:
Error detected while processing MYDIRECTORY/.vimrc:
line 19:
E185: Cannot find color scheme 'onedark'
Press ENTER or type command to continue
Run Code Online (Sandbox Code Playgroud)
该onedark主题不加载,但如果可以,Vim,I型: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()
Run Code Online (Sandbox Code Playgroud)
我该怎么办?
vim-plug 的工作方式是这样的:
call plug#begin('~/.vim/plugged')
Run Code Online (Sandbox Code Playgroud)
创建一堆函数/命令并设置一堆选项,
Plug 'https://github.com/joshdick/onedark.vim.git'
Run Code Online (Sandbox Code Playgroud)
将该资源添加到内部列表中,
call plug#end()
Run Code Online (Sandbox Code Playgroud)
实际上安装所有你的插件,~/.vim/plugged如果它们不存在,并设置你:help 'runtimepath'的正确值,告诉 Vim 在哪里寻找插件。
因此,基本上,在 vim-plug 发挥其魔力之前,您不能指望 vim-plug 安装的插件可用。
colorscheme onedark 下面 移动call plug#end()应该可以解决您的问题。
| 归档时间: |
|
| 查看次数: |
2506 次 |
| 最近记录: |