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

(provide 'fcuny-python)