source: projects/specs/trunk/y/yatex/vine-default-yahtml.el @ 2599

Revision 2599, 894 bytes checked in by munepi, 13 years ago (diff)

updated emacs, emacs24, yatex, howm

Line 
1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2;;  -*- coding: utf-8-unix -*-
3;;  FSF Emacs 23 用 Vine Linux YaHtml 設定
4;;    Munehiro Yamamoto <munepi@vinelinux.org>
5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
6
7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
8;; YaHtml-mode: provided by YaTeX
9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
10
11(autoload 'yahtml-mode "yahtml" "Yet Another HTML mode" t)
12
13(setq auto-mode-alist
14      (cons (cons "\\.html$" 'yahtml-mode) auto-mode-alist))
15
16;; 自動改行を無効
17(add-hook 'yahtml-mode-hook
18          '(lambda () (setq auto-fill-function nil)))
19
20(setq yahtml-www-browser "firefox")
21
22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
23
24(provide 'vine-default-yahtml)
25
26;; Local Variables:
27;; mode: emacs-lisp
28;; End:
Note: See TracBrowser for help on using the repository browser.