zoukankan      html  css  js  c++  java
  • Color theme installation for Emacs in Windows 7

    color-theme

    Table of Contents

    1 Why we need color-theme?

    Everyone has his/her style. I perfer the latter. Which do you like?

    2 Download color-theme

    3 Configuration

    • New a directory emacs_site_lisp in home directory.
    • How to know your home directory? open eshell, then cd, then pwd, you will see the home directory.
    • Unzip the download file, and put it in the dir emacs_site_lisp.
    • Add configuration to .emacs. NOTE: we cannot use the configuration on the websit. It doesn't work.
    (setq load-path (append load-path (list "~/emacs_site_lisp")))
    (setq load-path (append load-path (list "~/emacs_site_lisp/color-theme-6.6.0")))
    (require 'color-theme)
    (eval-after-load "color-theme"
    '(progn
    (color-theme-initialize)
    (color-theme-gnome2))) ;;what ever you like, I like color-theme-gnome2
    

    4 Usage

    If you want to change the color theme when you've opened the emacs, use this command: M-x color-theme-TAB select which you like

    • My favorit theme? color-thme-gnome2

    Date: 2012-05-11 19:43:29

  • 相关阅读:
    杂项收集,包括-发邮件、二维码生成、文件下载、压缩、导出excel
    SQL2008删除大量数据
    优秀程序设计的18大原则
    多线程基础
    SQL金典
    [读书笔记]高效程序员的45个习惯:敏捷开发修炼之道
    Unity 查找资源引用工具
    Unity自动生成各种机型分辨率效果工具
    Unity Editor模式 Invoke()函数 失效
    Unity 特效 粒子 自动播放
  • 原文地址:https://www.cnblogs.com/guyufei/p/2496974.html
Copyright © 2011-2022 走看看