Flycheck for python is rad

This commit is contained in:
John Doty 2016-05-24 14:05:06 -07:00
parent 2670bbb857
commit 42d4cf44a4

View file

@ -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
;; =================================================================