dotfiles-emacs/.config/emacs/config/python.el
finga 7df5b0e507 Move config files to XDG-compatible path
Move config files to XDG-compatible path: `$HOME/.config/emacs`.
2025-03-10 17:45:24 +01:00

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))