{{{#!html
<span style='font-size:200%;'>Emacs 글꼴 테마</span><br />
}}}

[[TableOfContents]]

이 글은 글쓴이가 Emacs lisp을 배울 때, 심심해서? 만들어 본 것입니다. 이미 emacswiki.org에는 수십종의 테마를 지원하는 color theme 패키지가 있습니다. EmacsColorTheme을 참고하기 바랍니다. 약간의 단점도 있으나, 전반적으로 글쓴이가 만든 etheme보다 우수합니다. :)

----

이 글은 emacs version 22.0을 기준으로, emacs의 배경색과 전경색, 여러가지 글꼴의 색상과 기타 설정을 theme(테마)으로 등록하고 손쉽게 바꿀 수 있는 방법에 대해 소개합니다.

먼저 [http://www.cinsk.org/sw/emacs-scripts/etheme.html etheme]을 다운받아서 설치하기 바랍니다. 일반적인 설치 방법은 EmacsInstallScript를 참고하기 바랍니다. 간단히 요약하면, 이 파일을 $HOME/.emacs.d/ 디렉토리에 복사하고, $HOME/.emacs에 다음 내용을 추가하면 됩니다:

{{{#!vim lisp
(setq load-path (cons (expand-file-name "~/.emacs.d/") load-path))
(require 'etheme)
}}}

그리고 나서 M-x etheme-set-theme을 실행하면, 지정된 몇가지 theme style을 선택해서 쓸 수 있습니다. 여러분 자신만의 theme을 만들었다면 글쓴이에게 연락하기 바랍니다. (메일을 보내셔도 좋고, [http://bbs.kldp.org/profile.php?mode=viewprofile&u=238 여기]에 메시지를 남겨도 됩니다.

현재 다음과 같은 theme이 등록되어 있습니다:

 * cinsk -- 글쓴이 개인 theme
 * vim -- vim default theme
 * elflord - vim "elflord" color scheme
 * morning -- vim "morning" color scheme

=== cinsk theme ===
attachment:emacs-etheme-cinsk.png

=== canyon theme ===
attachment:emacs-etheme-canyon.png

=== vim theme ===
attachment:emacs-etheme-vim.png

=== morning theme ===
attachment:emacs-etheme-morning.png

=== elflord theme ===
attachment:emacs-etheme-elflord.png

끝. B) -- [http://www.cinsk.org/ 신성국]
----
 * {{{#ff0000 TODO}}} 업데이트.
----
'''Q''' 시작할때 cinsk 테마로 자동으로 시작하려면 어떻게 해야 합니까? Lisp 를 전혀 몰라서 이것저것 해봐도 동작하지 않는군요. -- [missu] [[DateTime(2006-01-30T18:49:59)]]

'''A'''
.emacs에 다음과 같은 코드를 삽입하면 됩니다.
{{{#!vim lisp
(require 'etheme)
(etheme-apply-theme "cinsk")
}}}
 -- [CN] [[DateTime(2006-02-01T05:01:04)]]
----
윈도우즈용 Emacs의 사용자는 EmacsW32 폴더가 Emacs 폴더 안에 있는지 확인해 보십시요. 이미 있다면 etheme는 require만으로 사용할 수 있습니다. -- [CN] [[DateTime(2006-02-01T05:06:52)]]
----
CategoryEmacs