;;; init-python.el --- Configure python -*- lexical-binding: t -*- ;; Author: Franck Cuny ;;; Commentary: ;; All python related things ;;; Code: (use-package python-mode :hook ((python-mode . tree-sitter-hl-mode) (python-mode . eglot-ensure)) :custom ;; if set to an absolute path, pyvenv won't work (python-shell-interpreter "python3")) (use-package blacken :ensure t :hook (python-mode . blacken-mode)) (use-package pyvenv :ensure t :config (pyvenv-mode 1)) (provide 'init-python) ;;; init-python.el ends here