Emacs添加主题插件(Win系统)
*/-->
/*
@licstart The following is the entire license notice for the
JavaScript code in this tag.
Copyright (C) 2012-2013 Free Software Foundation, Inc.
The JavaScript code in this tag is free software: you can
redistribute it and/or modify it under the terms of the GNU
General Public License (GNU GPL) as published by the Free Software
Foundation, either version 3 of the License, or (at your option)
any later version. The code is distributed WITHOUT ANY WARRANTY;
without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
As additional permission under GNU GPL version 3 section 7, you
may distribute non-source (e.g., minimized or compacted) forms of
that code without the copy of the GNU GPL normally required by
section 4, provided you include this license notice and a URL
through which recipients can access the Corresponding Source.
@licend The above is the entire license notice
for the JavaScript code in this tag.
*/
*///-->
Emacs添加主题插件(Win系统)
1 下载主题插件
2 配置
在.emacs文件中添加如下:
; ===========================
; 加载color-theme文件夹。其中~/表示Emacs程序的根目录。后面两个文件夹是我自己扩展存放的文件夹。
(add-to-list 'load-path "~/extend/color-theme/")
(require 'color-theme)
(color-theme-initialize)
; 下面这一句是指定使用什么主题。可以直接M-x,输入color-theme-,Tab键看列出来的主题名。
(color-theme-robin-hood)
; ===========================