summary refs log tree commit diff
path: root/emacs.d/custom/fcuny-python.el
blob: b5fbcba9ccd91ad1f40b887eb2fc4a0242eddf47 (plain) (blame)
1
2
3
4
5
6
7
8
9
(use-package python
  :after (flycheck flyspell)
  :mode (("\\.py$"   . python-mode)
         ("BUILD\\'" . python-mode))
  :commands python-mode
  :hook ((python-mode . eldoc-mode))
  :custom (python-indent-offset 2))

(provide 'fcuny-python)