12345678910111213141516171819202122232425262728 |
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
- ;; -*- 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))
- ;; 自動改行を無効
- (add-hook 'yahtml-mode-hook
- '(lambda () (setq auto-fill-function nil)))
- (setq yahtml-www-browser "firefox")
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
- (provide 'vine-default-yahtml)
- ;; Local Variables:
- ;; mode: emacs-lisp
- ;; End:
|