meadow + python-mode の設定

1. https://launchpad.net/python-mode/ から python-mode.el をダウンロード。

2. Meadow ディレクトリ直下の site-lisppython-mode.el をおく。

3. .emacs に以下の文を追加

(setq auto-mode-alist
     (cons '("\\.py$" . python-mode) auto-mode-alist))
(setq interpreter-mode-alist
     (cons '("python" . python-mode)
           interpreter-mode-alist))
(autoload 'python-mode "python-mode" "Python editing mode" t)