blob: b0eff5f74533e3ed36875d01ba6c243688edbe48 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
(use-package python
:after (flycheck flyspell)
:mode (("\\.py$" . python-mode)
("\\.aurora$" . python-mode))
:commands python-mode
:hook ((python-mode . eldoc-mode))
:custom (python-indent-offset 2))
(provide 'fcuny-python)
|