首页 > 解决方案 > VIM Solarized 配色方案无法正常工作

问题描述

我使用 Windows Store 中的 Windows 终端,我尝试使用 vim-plug 安装 solarized colorscheme,但它无法正常工作。 在此处输入图像描述

它看起来是灰色的,我不确定为什么它不起作用。这是我的 init.vim 文件:

 call plug#begin(stdpath('data') . '/plugged')
     Plug 'altercation/vim-colors-solarized'
 call plug#end()
 
 
 set nu
 set tabstop=4
 set shiftwidth=4
 
 syntax enable
 let g:solarized_termcolors=256
 set background=dark
 colorscheme solarized

标签: vimneovim

解决方案


推荐阅读