mirror of
https://codeberg.org/scip/dot-emacs.git
synced 2026-07-09 19:24:24 +02:00
17 lines
466 B
EmacsLisp
17 lines
466 B
EmacsLisp
(use-package python
|
|
:mode ("\\.py\\'" . python-mode)
|
|
:interpreter ("python" . python-mode)
|
|
:mode "\\.py\\'"
|
|
:config
|
|
(defun tvd-python-hook()
|
|
(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!
|
|
(lsp))
|
|
|
|
:hook ((python-mode . tvd-python-hook)))
|
|
|
|
(provide 'init-python)
|
|
;;; init-python.el ends here
|