about summary refs log blame commit diff
path: root/emacs/.emacs.d/wpc/wpc-python.el
blob: 25f1a4816a67d970462c589e115cb0a2a58f1f78 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                     
                                                                                


                                                                                





                                                        
;;; wpc-python.el --- Python configuration -*- lexical-binding: t -*-
;; Author: William Carroll <wpcarro@gmail.com>

;;; Commentary:
;; My Python configuration settings
;;
;; Depends
;; - `apti yapf`

;;; Code:

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Configuration
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

(use-package py-yapf
  :config
  (add-hook 'python-mode-hook #'py-yapf-enable-on-save))

(provide 'wpc-python)
;;; wpc-python.el ends here