blob: d0c6dd0d3e42d2c24010cf98a6e007561a511bf4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
;;; wpc-python.el --- Python configuration -*- lexical-binding: t -*-
;; Author: William Carroll <wpcarro@gmail.com>
;;; Commentary:
;; My Python configuration settings
;;
;; Depends
;; - `apti yapf`
;;; Code:
(use-package py-yapf
:config
(add-hook 'python-mode-hook #'py-yapf-enable-on-save))
(provide 'wpc-python)
;;; wpc-python.el ends here
|