el-get/recipes/python-mode.el

10 lines
394 B
EmacsLisp
Raw Normal View History

(:name python-mode
:type git
:url "https://github.com/emacsmirror/python-mode.git"
:features (python-mode doctest-mode)
:compile nil
:post-init (lambda ()
(add-to-list 'auto-mode-alist '("\\.py$" . python-mode))
(add-to-list 'interpreter-mode-alist '("python" . python-mode))
(autoload 'python-mode "python-mode" "Python editing mode." t)))