update emacs config to 21th century

This commit is contained in:
2023-04-12 14:26:43 +02:00
parent 76ce84c43b
commit 725984485a
121 changed files with 6584 additions and 6864 deletions

12
conf-lisp/python.el Normal file
View File

@@ -0,0 +1,12 @@
(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!
)))