12345678910111213141516171819202122232425262728 |
- (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)
|