如何在 emacs 中禁用当前行 "highlighting" (doom emacs)
How to disable current line "highlighting" in emacs (doom emacs)
我刚刚安装了 Doom Emacs,我看到了这个屏幕:
picture link
我希望这个“突出显示”功能消失。
我以为是 hl-line-mode
或 global-hl-line-mode
,但禁用它们没有任何效果。
在 macOS 10.15.7 上使用 Emacs 27.2 on Doom Emacs commit 2731685
(当前头)。
强行改变背景颜色:
(custom-set-faces
'(default ((t (:background "#000000"))))
'(hl-line ((t (:background "#000000"))))
)
将此添加到 ~/.doomd.d/config.el
的末尾。
我刚刚安装了 Doom Emacs,我看到了这个屏幕:
picture link
我希望这个“突出显示”功能消失。
我以为是 hl-line-mode
或 global-hl-line-mode
,但禁用它们没有任何效果。
在 macOS 10.15.7 上使用 Emacs 27.2 on Doom Emacs commit 2731685
(当前头)。
强行改变背景颜色:
(custom-set-faces
'(default ((t (:background "#000000"))))
'(hl-line ((t (:background "#000000"))))
)
将此添加到 ~/.doomd.d/config.el
的末尾。