我使用Emacs本机Win 32,但使用emacs -nw
在DOS提示符下运行它。我喜欢它。
但是,我无法轻易读取脸部前景的蓝色。而现在我喜欢将所有蓝色映射为浅蓝色。
有这样的别名吗?
感谢。
答案 0 :(得分:2)
我认为你应该从Color theme包开始,然后选择你喜欢的颜色主题。
稍后您可以通过M-x customize-face
调整某些颜色。命令M-x list-colors-display
将帮助您选择正确的颜色。
(defun my-define-red()
(interactive)
(tty-color-define "red" 1 (list 32000 12000 12000)))
答案 1 :(得分:2)
如果您要做的就是像我一样修复迷你缓冲区提示(在终端的Cygwin emacs中默认为黑色的深蓝色)尝试使用以下方法编辑迷你缓冲区提示面:
这是我加入的内容:
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(minibuffer-prompt ((t (:foreground "green"))))
答案 2 :(得分:0)
答案 3 :(得分:0)
如果您将其添加到.emacs
,则所有默认面孔都将适应深色背景:
(custom-set-variables '(frame-background-mode 'dark))