summaryrefslogtreecommitdiffstats
path: root/lisp/init-python.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/init-python.el')
-rw-r--r--lisp/init-python.el7
1 files changed, 7 insertions, 0 deletions
diff --git a/lisp/init-python.el b/lisp/init-python.el
index b760a34..4ddf92b 100644
--- a/lisp/init-python.el
+++ b/lisp/init-python.el
@@ -1,4 +1,9 @@
+;;; init-python.el --- configure python language support
+;;; Commentary:
+;;; Code:
+
(defun mpolden/python-mode-buffer-local-variables ()
+ "Set buffer-local variables for `python-mode'."
;; highlight lines longer than 88 characters
(setq-local fill-column 88)
;; use flat index in imenu
@@ -18,3 +23,5 @@
(setq python-shell-interpreter "python3")))
(provide 'init-python)
+
+;;; init-python.el ends here