finga
d188dd4c89
To decouple python from the dev config and contain it solely in the python config, configure the lsp-mode for python in the python config.
12 lines
244 B
EmacsLisp
12 lines
244 B
EmacsLisp
(add-hook 'python-mode-hook 'python-flake8)
|
|
(add-hook 'python-mode-hook 'python-pylint)
|
|
|
|
(use-package flycheck-mypy
|
|
:ensure t
|
|
:hook
|
|
(python-mode . flycheck-mode))
|
|
|
|
(use-package lsp-mode
|
|
:ensure t
|
|
:hook
|
|
(python-mode . lsp-deferred))
|