;;; my-lang-python.el --- Configures emacs for python -*- lexical-binding: t -*- ;; Author: Franck Cuny ;;; Commentary: ;;; Code: (require 'python-mode) (require 'blacken) ;; enable black when we are in python-mode (add-hook 'python-mode-hook 'blacken-mode) (provide 'my-lang-python) ;;; my-lang-python.el ends here