- 前ページ
- 次ページ
1. color-themeをインストール
---------------------------------------------------------------------------
cd ~/.emacs.d
wget http://download.savannah.gnu.org/releases/color-theme/color-theme-6.6.0.tar.gz
tar xzf color-theme-6.6.0.tar.gz
rm color-theme-6.6.0.tar.gz
---------------------------------------------------------------------------
2. ~/.emacs.elを設定
--------------------------------------------------
(add-to-list 'load-path "~/.emacs.d/color-theme-6.6.0")
(require 'color-theme)
(eval-after-load "color-theme"
'(progn
(color-theme-initialize)
(color-theme-〇〇)))
--------------------------------------------------
◯◯の部分にテーマ名を入力
テーマの一覧※を参考にするか,「M-x color-theme-〇〇」で色々試してみるといいかも!
※テーマの一覧
http://gnuemacscolorthemetest.googlecode.com/svn/html/index-el.html
~/.emacs.elを入れたら文字化けしちゃったので,~/.emacsの文字コード設定を同様に入力
--------------------------------------
(set-default-coding-systems '文字コード)
(set-keyboard-coding-system '文字コード)
(set-terminal-coding-system '文字コード)
(set-buffer-file-coding-system '文字コード)
--------------------------------------
---------------------------------------------------------------------------
cd ~/.emacs.d
wget http://download.savannah.gnu.org/releases/color-theme/color-theme-6.6.0.tar.gz
tar xzf color-theme-6.6.0.tar.gz
rm color-theme-6.6.0.tar.gz
---------------------------------------------------------------------------
2. ~/.emacs.elを設定
--------------------------------------------------
(add-to-list 'load-path "~/.emacs.d/color-theme-6.6.0")
(require 'color-theme)
(eval-after-load "color-theme"
'(progn
(color-theme-initialize)
(color-theme-〇〇)))
--------------------------------------------------
◯◯の部分にテーマ名を入力
テーマの一覧※を参考にするか,「M-x color-theme-〇〇」で色々試してみるといいかも!
※テーマの一覧
http://gnuemacscolorthemetest.googlecode.com/svn/html/index-el.html
~/.emacs.elを入れたら文字化けしちゃったので,~/.emacsの文字コード設定を同様に入力
--------------------------------------
(set-default-coding-systems '文字コード)
(set-keyboard-coding-system '文字コード)
(set-terminal-coding-system '文字コード)
(set-buffer-file-coding-system '文字コード)
--------------------------------------
~/.bash_profileに2行追加
------------------------------------------
export CLICOLOR=1
export LSCOLORS=DxGxcxdxCxegedabagacad
------------------------------------------
このサイトの色の対応表が便利
Today's Activity Report(bash_profileの設定)
http://d.hatena.ne.jp/shokim/20110508/1304825759
------------------------------------------
export CLICOLOR=1
export LSCOLORS=DxGxcxdxCxegedabagacad
------------------------------------------
このサイトの色の対応表が便利
Today's Activity Report(bash_profileの設定)
http://d.hatena.ne.jp/shokim/20110508/1304825759