123456789101112131415161718192021222324 |
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
- ;; -*- coding: utf-8-unix -*-
- ;; FSF Emacs 23 用 Vine Linux YaHtml 設定
- ;; Munehiro Yamamoto <munepi@vinelinux.org>
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
- ;; YaHtml-mode: provided by YaTeX
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
- (autoload 'yahtml-mode "yahtml" "Yet Another HTML mode" t)
- (setq auto-mode-alist
- (cons (cons "\\.html$" 'yahtml-mode) auto-mode-alist))
- (setq yahtml-www-browser "firefox")
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
- (provide 'vine-default-yahtml)
- ;; Local Variables:
- ;; mode: emacs-lisp
- ;; End:
|