如何设置Emacs主题?

发布于 2024-08-18 04:18:07 字数 244 浏览 7 评论 0原文

我是 emacs 新手,想知道如何让它加载我选择的主题(http://lambda.nirv.net/m/files/color-theme-chocolate-rain.el

我在ubuntu上,并且不知道我在做什么(但是:P )对于 Emacs 来说,大部分都是这样。

I am new to emacs and wondering how I would get it to load a theme of my choosing (http://lambda.nirv.net/m/files/color-theme-chocolate-rain.el)

I am on ubuntu, and have no idea what I am doing (yet :P) in regards to Emacs, for the most part.

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

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

发布评论

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

评论(3

樱花落人离去 2024-08-25 04:18:07

下载主题文件夹或下载“.el”文件。
由于您使用的是 ubuntu,因此您需要将“.el”文件复制到主题加载路径中。
或者创建自定义主题加载路径,如下所示

  • 创建一个目录 ~/.emacs.d/themes
  • 在 emacs 中打开“.emacs”文件,
  • 在文件末尾输入以下行
    (add-to-list 'custom-theme-load-path "~/.emacs.d/themes")

复制 '.el' 文件后,在 .emacs 文件中添加以下行

(load-theme '主题名称)

例如 (load-theme 'gotham)

保存文件并重新启动 emacs。

Download the theme folder or download the '.el' file.
Since you are on ubuntu you'll need to copy the '.el' file in to your theme-load path.
Or create your custom theme-load path as follows

  • Make a directory ~/.emacs.d/themes
  • Open the '.emacs' file in emacs
  • enter the following line at the end of the file
    (add-to-list 'custom-theme-load-path "~/.emacs.d/themes")

after copying the '.el' file, add the following line in the .emacs file

(load-theme 'theme name)

e.g. (load-theme 'gotham)

Save the file and restart emacs.

紫瑟鸿黎 2024-08-25 04:18:07

这应该可行(您可能需要将 color-theme-tty-dark 更改为 color-theme-chocolate-rain

;; Enable a color theme
(require 'color-theme)
(color-theme-initialize)
(color-theme-tty-dark)

This should work (you probably need to change color-theme-tty-dark to color-theme-chocolate-rain:

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