summaryrefslogtreecommitdiffstats
path: root/lisp/init-python.el
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2021-03-16 20:27:55 +0100
committerMartin Polden <mpolden@mpolden.no>2021-03-16 20:27:55 +0100
commit98b2309159f24bbef201d6ca40c1ffc99853897e (patch)
tree1696d3f9e91085e3405e96238695868fae64edff /lisp/init-python.el
parentbf7f57bbaeb1d654d3e5dcf6df2cce9176c0b5c9 (diff)
all: Fix documentation
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