summaryrefslogtreecommitdiff
blob: 1c2cc29ae3b2f197353479909857c722febe136c (plain)
1
2
3
4
5
6
7
8
9
10
;;; rst site-lisp configuration

(add-to-list 'load-path "@SITELISP@")
(autoload 'rst-mode "rst" "mode for editing reStructuredText documents" t)
(add-to-list 'auto-mode-alist '("\\.re?st\\'" . rst-mode))

;; disable rst-mode-lazy in case font-lock doesn't support it
(or (fboundp 'lazy-lock-mode)
    (setq rst-mode-lazy nil))