2019-10-09 13:13:56 +02:00
|
|
|
;;; wpc-python.el --- Python configuration -*- lexical-binding: t -*-
|
|
|
|
;; Author: William Carroll <wpcarro@gmail.com>
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;; My Python configuration settings
|
|
|
|
;;
|
|
|
|
;; Depends
|
|
|
|
;; - `apti yapf`
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
2020-01-06 16:19:57 +01:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; Configuration
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
2019-10-09 13:13:56 +02:00
|
|
|
(use-package py-yapf
|
|
|
|
:config
|
|
|
|
(add-hook 'python-mode-hook #'py-yapf-enable-on-save))
|
|
|
|
|
|
|
|
(provide 'wpc-python)
|
|
|
|
;;; wpc-python.el ends here
|