想向各位道友收集一下美化 org 的配置

啥中文字体呢

用了 mixed-pitch

中文字体是: Sarasa-Mono-SC-Nerd

英文字体:variable pitch: Bookerly; fixed pitch: Cascadia Mono

在 org 中,如果是中英文混排,panggu-spacing 是一个很不错的扩展。

代码块背景灰色是主题自带的么?我用的 sanityinc-tomorrow-day 是没有底色的, sanityinc-tomorrow-bright 倒是有。

我猜测这是 Modus Operandi 提供的效果,

(setq modus-themes-org-blocks 'gray-background)
; {nil,'gray-background,'tinted-background}

设置face org-block 里的 background 就好了

1 个赞

我用的主题是自己魔改的 mindre-theme, modeline也是 fork 自 mood-line

2 个赞

panggu-spacing

这东西卡死了。不知道现在性能有没有好一些

之前用着还挺舒服

没问题的, 我在WINDOWS上都不卡

有没有大佬展示一下自己的agenda美化

好几年前的事了,4、5年前。后来觉得不加才是正统,就不再管了

你表格的那个粗竖线是怎么搞的?

org-modern 所提供.

其中的粗细可以通过自定义下面几个变量来实现:

(defcustom org-modern-table-vertical 3
  "Width of vertical table lines in pixels.
Set to nil to hide the vertical lines."
  :type '(choice (const nil) integer))

(defcustom org-modern-table-horizontal 0.1
  "Prettify horizontal table lines."
  :type '(choice (const nil) number))

不卡啊,我的文件都小。要是大文件也是分成一些列小文件。中英文编辑省了很多不必要的空格输入。

有谁使用PragmataPro + cnfonts的,很多字符像是[todo]这种都无法正常显示,或者干脆显示不出来?

如果弃用cnfonts,使用p233大哥的这两行代码,就能正常显示了。 (add-to-list 'default-frame-alist '(font . “PragmataPro Mono Liga 18”)) (set-fontset-font “fontset-default” 'han “FZFW ZhuZi MinchoS”)

有知道怎么处理的吗? 完全搞不懂

我才又试了试,还是卡。

果然大文件还是不行。

自己搞定了。

可能这个插件对整个文件进行了扫描,这个有点没必要了。准确判断当前输入,是否需要添加必要的空格,就好了。这个加空格也不都准确。如果要处理整个文档,对多处以前输入进行添加,可能类查找替换的功能更合适些。

还没写 README :see_no_evil:

主要配置在 lisp/init-org.el 部分,写的比较乱 ,见谅…

face 相关设置见

5 个赞