diff --git a/.emacs.d/core.el b/.emacs.d/core.el index 6fa1741..d61cad2 100644 --- a/.emacs.d/core.el +++ b/.emacs.d/core.el @@ -569,6 +569,12 @@ (setq interpreter-mode-alist (cons '("python" . python-mode) interpreter-mode-alist)) +(defun my-python-hook () + (flycheck-mode) + ) + +(add-hook 'python-mode-hook 'my-python-hook) + ;; ================================================================= ;; JavaScript Support ;; =================================================================