将 Vim 配色方案转换为奶油色?

将 Vim 配色方案转换为奶油色?

如何设置 Cream 使用Vim 的 Vim Vibrantink 配色方案

答案1

查看 cream 文件,特别是cream-colors.vim向下滚动一点,然后在第 156 行左右添加一个新的代码块 (copyNpaste):

elseif mychoice ==“zenburn”
    调用 Cream_source($CREAM . “cream-colors-zenburn.vim”)
    “如果被调用,也改变选择(否则不改变)
    如果存在(“a:1”)
         调用 Cream_colors_selection(“zenburn”)
    elseif 存在(“g:CREAM_COLORS_SEL”)
         调用 Cream_colors_selection(g:CREAM_COLORS_SEL)
    万一
别的
    让我的选择 = “cream”

添加一个新的部分块并用您想要的配色方案替换“cream-colors-zenburn.vim”。不要忘记将该主题放入 cream 文件夹中。

然后打开cream-menu-settings.vim并查看第 395 行左右:

“配色方案(奶油色)
如果存在(“g:CREAM_COLORS”)&& g:CREAM_COLORS ==“cream”
    执行'anoremenu 60.633 &Settings.P&references.&Color\ 主题。'.s:on.'Cream\(默认):call Cream_colors("cream")'
别的
    执行'anoremenu 60.633 &Settings.P&references.&Color\ 主题。'.s:off.'Cream\(默认):call Cream_colors("cream")'
万一

对您的主题应用相同的逻辑。这应该会使您的颜色主题在奶油色中启动并运行。

相关内容