所以我现在正在使用this theme,我想自定义它,以便在orgmode级别1-4中没有更大的:height,但我不想编辑主题文件。你是怎么做到的?
答案 0 :(得分:1)
查看来源:此主题提供user options来自定义字体大小。
要为所有组织模式标题使用相同的高度,请将以下代码添加到init.el
:
(setq monokai-height-minus-1 1
monokai-height-plus-1 1
monokai-height-plus-2 1
monokai-height-plus-3 1
monokai-height-plus-4 1)
(load-theme 'monokai 'no-confirm)