dotfiles/emacs.d/python.el
2019-11-25 09:30:13 -07:00

12 lines
621 B
EmacsLisp

(elpy-enable)
(setq elpy-rpc-python-command "/usr/local/Cellar/python3/3.7.3/bin/python3")
(setq python-shell-interpreter "/usr/local/Cellar/python3/3.7.3/bin/python3")
(setq flycheck-python-pycompile-executable "/usr/local/Cellar/python3/3.7.3/bin/python3")
(setq flycheck-python-flake8-executable "/usr/local/Cellar/python3/3.7.3/bin/python3")
(setq flycheck-python-pylint-executable "/usr/local/Cellar/python3/3.7.3/bin/python3")
(when (require 'flycheck nil t)
(setq elpy-modules (delq 'elpy-module-flymake elpy-modules))
(add-hook 'elpy-mode-hook 'flycheck-mode))
(add-hook 'python-mode-hook 'importmagic-mode)