mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
978b892f27
Submitted by: nobutaka Forgotten by: sf Inspired from: http://pc.2ch.net/test/read.cgi/unix/999166513/801 Install lisps into EMACS_VERSION_SITE_LISPDIR rather than EMACS_LIBDIR for FSF emacsen.
18 lines
430 B
Plaintext
18 lines
430 B
Plaintext
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.
|