diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-10-23 02:36:51 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-10-23 02:36:51 +0200 |
commit | 1c58e6885747efa45faae249b280372c3e0b6496 (patch) | |
tree | 56077b626097b6078f1473b8e1c3c526be8c77a6 /.config | |
parent | ed0fed5598027467a30697b2ffda0cb50ad2065f (diff) |
emacs: Set indentation options for Python
Diffstat (limited to '.config')
-rw-r--r-- | .config/emacs/modules/mm-editing.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.config/emacs/modules/mm-editing.el b/.config/emacs/modules/mm-editing.el index 11bf689..4fc7bde 100644 --- a/.config/emacs/modules/mm-editing.el +++ b/.config/emacs/modules/mm-editing.el @@ -263,4 +263,9 @@ is as described by `emmet-expand-line'." :custom (makefile-backslash-column 80)) +(use-package python-mode + :custom + (python-indent-def-block-scale 1) + (python-indent-guess-indent-offset-verbose nil)) + (provide 'mm-editing) |