blob: ca2dded84e41942eff31032cdaf8dac5856c08e7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
To use navi2ch, put the following into ~/.emacs.
(require 'navi2ch)
To use monafonts with FSF Emacs-21 or Xemacs, put
(cond
((and (eq window-system 'x)
(or (featurep 'xemacs)
(and (boundp 'emacs-major-version)
(>= emacs-major-version 21))))
(require 'navi2ch-mona)
(add-hook 'navi2ch-article-arrange-message-hook
'navi2ch-mona-arrange-message)
(setq navi2ch-mona-enable t)))
into ~/.navi2ch/init.el.
|