如何设置Emacs主题?
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
下载主题文件夹或下载“.el”文件。
由于您使用的是 ubuntu,因此您需要将“.el”文件复制到主题加载路径中。
或者创建自定义主题加载路径,如下所示
(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
(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.
这应该可行(您可能需要将
color-theme-tty-dark
更改为color-theme-chocolate-rain
:This should work (you probably need to change
color-theme-tty-dark
tocolor-theme-chocolate-rain
:在这里:http://www.nongnu.org/color-theme/。
Here you go: http://www.nongnu.org/color-theme/.