有没有办法将颜色主题从 R GUI 导入到 Emacs 中?

发布于 2024-09-07 21:25:53 字数 93 浏览 5 评论 0原文

我发现很难在 emacs 中对 R 框架(?)中的所有消息进行排序,并且我想知道是否可以轻松更改颜色,使其看起来更像 R GUI 。

谢谢

I find it hard to sort through all the messages in the R frame(?) in emacs, and I was wondering if it'll be easy to change the colours so that it looks more like the R GUI.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

但可醉心 2024-09-14 21:25:53

当然,我

(set-background-color "gray10")
(set-foreground-color "wheat")
(set-cursor-color "wheat")
(set-mouse-color "wheat")
(set-face-background 'default "black")
(set-frame-font "Bitstream Vera Sans Mono-10")   ;; you may not have that font

~/.emacs (或者更确切地说是其中的文件源)中使用。这些颜色适用于多种编程语言,特别是 R、C/C++、SQL、shell 脚本……您可以随意调整这些颜色以满足您的喜好(此处为 R GUI)。

请参阅 Emacs Wiki 了解无数替代方案。

Sure, I use

(set-background-color "gray10")
(set-foreground-color "wheat")
(set-cursor-color "wheat")
(set-mouse-color "wheat")
(set-face-background 'default "black")
(set-frame-font "Bitstream Vera Sans Mono-10")   ;; you may not have that font

in ~/.emacs (or rather a file source from it). These colors work well for numerous programming languages, and in particularly R, C/C++, SQL, shell scripts, ... You can probably adapt these at will to suit your preference (here the R GUI).

See the Emacs Wiki for countless alternatives.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文