mirror of
https://codeberg.org/scip/dot-emacs.git
synced 2025-12-16 20:10:58 +01:00
13 lines
374 B
EmacsLisp
13 lines
374 B
EmacsLisp
|
|
(use-package python
|
||
|
|
:mode ("\\.py\\'" . python-mode)
|
||
|
|
:interpreter ("python" . python-mode)
|
||
|
|
:mode "\\.py\\'"
|
||
|
|
:hook
|
||
|
|
(function
|
||
|
|
(lambda()
|
||
|
|
(local-set-key [delete] 'py-electric-delete)
|
||
|
|
(setq-default indent-tabs-mode nil)
|
||
|
|
(setq mode-name "PY")
|
||
|
|
(outline-minor-mode 0) ;; turn off outline here. FIXME: find out where it's turned on!
|
||
|
|
)))
|