13 lines
236 B
EmacsLisp
13 lines
236 B
EmacsLisp
; -*- mode: Lisp -*-
|
|
|
|
((python-mode
|
|
. (
|
|
;; fill the paragraph to 80 columns when using M-q
|
|
(fill-column . 80)
|
|
|
|
;; Use 4 spaces to indent in Python
|
|
(python-indent-offset . 4)
|
|
(indent-tabs-mode . nil)
|
|
)))
|
|
|